Hello! How can I verify my phone without a secret key using appwrite dart sdk? For example, after creating a new user, you can update the status through the admin panel with one button. Is it possible to do this via flutter without confirming your phone or email? I don't need confirmation because I get a real phone number through the usdd command. Therefore, there is no need to check the phone whether it is real or not. I just want to do after creating an account it became verified.
Keep in mind that the "verified" tag is just a boolean that doesn't affect anything by default. Restricting access depending on verified/unverified status is totally up to you.
That being said, if you want to verify accounts without the secret, you will have to use the server-side SDK in an Appwrite Function.
Since you are familiar with Flutter, you must have a decent grasp of Dart as well, which is a supported runtime. Have a look at the documentation of the updatePhoneVerification
endpoint for Dart here
Oh very simple? Thank you very much!!!
Recommended threads
- Apple OAuth Scopes
Hi Hi, I've configured sign in with apple and this is the response i'm getting from apple once i've signed in. I cant find anywhere I set scopes. I remember se...
- Sign In With Apple OAuth Help
Hi All! I've got a flutter & appwrite app which Im trying to use sign in with apple for. I already have sign in with google working and the function is the sam...
- [SOLVED] OAuth With Google & Flutter
Hi all, I'm trying to sign in with google and it all goes swimmingly until the call back. I get a new user created on the appwrite dashboard however the flutte...