If you’ve just added a subdomain to your project, verified your DNS records, and confirmed your SSL certificate is working, but you're still hitting a general_route_not_found error, here is the fix:
Let's take Google OAuth as an example, Appwrite provides a default URI like this:
https://fra.cloud.appwrite.io/v1/account/sessions/oauth2/callback/google/...
Since you've switched to a custom subdomain, the default endpoint will no longer work. You need to replace fra.cloud.appwrite.io with your own subdomain. Your updated URI should look like this:
https://api.yourdomain.com/v1/account/sessions/oauth2/callback/google/...
Make sure to update these URIs in your respective OAuth provider's configuration settings.
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...
- > AppwriteException: The requested servi...
When trying to read or write from my database I get the following error: > AppwriteException: The requested service is disabled. You can enable the service from...
- Courtesy limit reset for non-profit migr...
Hi Team! I'm the architect for a 501(c)(3) non-profit project (Aaria's Blue Elephant) and we just hit our Free plan Database Read limit (currently at 164%). Th...