The containers may not be running properly. Make sure they're started by running docker compose up -d
[SOLVED} not found issue
I appreciate @Steven Enjoy your day
@Steven
how do I update phone details immediately account is created?
I did this,
Future submitDetails = account.create(
userId: ID.unique(),
email: submitEmail,
password: submitPassword,
name: submitName,
);
submitDetails.then((response) {
return response;
}).catchError((error) {
return "An error occured";
});
Future phoneNumber = account.createPhoneSession(
userId: ID.unique(),
phone: submitPhone,
);
phoneNumber.then((response) {
return response;
}).catchError((error) {
return "An error occured";
});
}
Only account was created, no phone details was present
Best to create another post.
But one problem is create phone session creates a new account
I will consider creating new post next time @Steven
how do I update phone immediately?
updatePhoneSession?
Update phone. However you need to make sure to call it after creating a session
[SOLVED] not found issue
it did not work, I guess am missing something
phone: submitPhone,
password: submitPassword,
);
phoneNumber.then((response) {
return response;
}).catchError((error) {
return "An error occured";
});```
Best to create a new post with your full code and error
Recommended threads
- MongoDb Database Breaks integer[] & bigi...
I've got a table with the below column created. When I try to insert the value `[-3408048000]` into it, the dart sdk cloud function call is successful (no error...
- Delete on cascade from Cloud Function
I'm writing a Python function that deletes a user's main row from a table in my database. This row has relationships with other tables that use cascade deletion...
- 1.9.6 Console handles all array columns ...
When creating or updating a row in the appwrite 1.9.6 web console, the form treats all list columns as a type string. Even if the column is a list of booleans, ...