where to setup allowed redirectUrl list in appwrite console #7970
Replies: 3 comments
-
|
You need to add a Web Platform. See https://appwrite.io/docs/quick-starts/web#step-1 |
Beta Was this translation helpful? Give feedback.
-
|
What you’re seeing is expected behavior in Appwrite — those domains (localhost, cloud.appwrite.io, appwrite.io) are not a “redirect whitelist UI”, but a platform origin validation constraint enforced by design. Why you're not seeing your domain Important clarification |
Beta Was this translation helpful? Give feedback.
-
|
To add to what's been shared: Appwrite doesn't have a standalone "allowed redirect URLs" list like some other auth providers. The redirect validation is tied to your registered Platforms in the console. Step-by-step fix:
Once your domain is registered as a Platform, Appwrite will accept redirect URLs originating from that domain in your Magic URL flow. Why this happens: Appwrite validates the For Magic URL specifically, make sure the await account.createMagicURLToken(
ID.unique(),
'user@example.com',
'https://yourdomain.com/auth/callback' // must match registered platform
);Hope this clears it up! |
Beta Was this translation helpful? Give feedback.
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
-
Hi i'm currently working with magic url login and it requires us to setup a redirect url to redirect back to our app with token in queryParams.
when i'm providing my url, it tells me that it should only be one of this listed options
localhostcloud.appwrite.ioappwrite.ioi assume that this is the domain that are allowed by default.
The problem is i'm unable to locate where to update this default configuration and add my domain or redirect to the list.
i have checked every section in console, but still couldn't locate it

i'm expecting a form like this
but i couldn't find it anywhere in the console.
the screenshot is from supabase dashboard btw
Beta Was this translation helpful? Give feedback.
All reactions