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
- Realtime with multiple connections
I need the Realtime on multiple Collections for diffrent applicational logic. So my question is: Is there a way to have only 1 Websocket connection or do I need...
- Can't login or deploy functions in Appwr...
Hello, since i updatet to the appwrite cli 6.1.0 i can't login or deploy functions with the cli. When i call the command: "appwrite get account --verbose" i ge...
- Create admin user?
I'm not really sure how this is supposed to work, I installed Appwrite through docker-compose and set it up. When I launched the app and went into it, I created...