
I have a Flutter app for Mac with a myapp://test
custom URI. If I visit that URI in my web browser, it redirects to my app.
But when I try to create a magic URL token like this:
final session = await account.createMagicURLToken(
userId: 'test',
email: 'test@example.com',
url: 'myapp://test'
);
...I get this error:
AppwriteException: general_argument_invalid, Invalid
url
param: URL host must be one of: localhost, cloud.appwrite.io, appwrite.io (400)
How can I make the link in the email point to my custom myapp://
URI? 🤔
Recommended threads
- insecure connection on Appwrite sites de...
This only happens in microsoft edge for some reason. I inspected all network requests and they are all requesting https properly. All other browsers work fine. ...
- Building of functions not working anymor...
Function deployments get stuck on "waiting" for a long time, then on "building", then the build logs show an internal server error (500) before ultimately faili...
- Appwrite SSR Google OAuth (Invalid Redir...
I was following the documentation till here: https://appwrite.io/docs/tutorials/nextjs-ssr-auth/step-7#oauth-form Getting 301 err, I tried creating a new proje...
