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
- CORS errors in Obsidian custom plugin
Hi, anyone here familiar with obsidian community plugins? In short: it's a local first note app which supports writing your own add-ons / plugin But I keep get...
- Appwrite 1.9.0 doctor fails tho database...
So i was testing in a local environment the upgrade for 1.9.0, and after getting everything into a running state, i checked the logs that shows : ``` └── Cre...
- Failed to start containers.
I'm trying to install Appwrite locally but struck on the subject point. There is no clear error in logs.