AppwriteException: Invalid url param: URL host must be one of: localhost, cloud.appwrite.io, appwrite.io, *.appwrite.io, repox-pink.vercel.app
at e.call (/var/task/.next/server/chunks/874.js:53:12477)
at process.processTicksAndRejections (node:internal/process/task_queues:105:5)
at async q.createRecovery (/var/task/.next/server/chunks/874.js:53:18699)
at async /var/task/.next/server/app/api/[[...route]]/route.js:1:86340
at async n (/var/task/.next/server/app/api/[[...route]]/route.js:1:11138)
at async /var/task/.next/server/app/api/[[...route]]/route.js:1:25872
at async n (/var/task/.next/server/app/api/[[...route]]/route.js:1:11138)
at async /var/task/.next/server/app/api/[[...route]]/route.js:1:14135
at async /var/task/node_modules/next/dist/compiled/next-server/app-route.runtime.prod.js:6:36957
at async eC.execute (/var/task/node_modules/next/dist/compiled/next-server/app-route.runtime.prod.js:6:27552) {
code: 400,
type: 'general_argument_invalid',
response: {
message: 'Invalid url param: URL host must be one of: localhost, cloud.appwrite.io, appwrite.io, *.appwrite.io,
code: 400,
type: 'general_argument_invalid',
version: '1.6.2'
}
}
I have a hosted Next.js app and need to implement a "Forgot Password" feature using createRecovery. It works perfectly on localhost, but on my hosted domain (https://www.vaiu.in), it's not functioning, and I'm not receiving any emails.
Can anyone explain why this is happening and how to fix it?
Sure, you need to add that new domain vaiu.in as a platform in Appwrites console.
Recommended threads
- Impossible to get USER after createEmail...
Am using provider to deal with functions linked to appwrite. Here is my login. Future<String?> login(String email, String password) async { try { aw...
- How to Display File in Web?
I'm trying to use Appwrite's Storage to store images and display them in my app, however when I use the `getFileView`, `getFileDownload` or `getFilePreview` met...
- Selfhosted Github App installation
I've followed this guide: https://appwrite.io/docs/advanced/self-hosting/configuration/version-control to connect GitHub to my self-hosted Appwrite instance (1....