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
- Unable to init function via cli
Hello! I have created a new self hosted instance of appwrite 1.9.6 and have connected to that insatnce with the cli 27.2.0 that was released a few hours ago. Wh...
- Appwrite-injected variables are not avai...
I am using rust-1.83 as a runtime and try to access APPWRITE_FUNCTION_API_ENDPOINT or APPWRITE_FUNCTION_API_KEY during runtime. Both are not set during my execu...
- OAuth Missing redirect URL
Hello all, on a Flutter mobile app with latest Appwrite dependency (25.4.0) I always got "Missing redirect URL" - "Your OAuth login flow is missing a proper red...