
Hello! I tried to use my connected custom domain to setup user verify email link but received an error. In my Android code, i send request to verification: ``` account.createVerification("https://appwrite.quizop.net", new CoroutineCallback<>((result3, error3) -> { if (error3 != null) { Log.e("ErrorMessage", error3.getMessage()); ExceptionHandler handler = new ExceptionHandler(SetupActivity.this.getApplicationContext()); runOnUiThread(new Runnable() { @Override public void run() { handler.showToast(error3.getMessage()); } }); error3.printStackTrace(); return;
}
runOnUiThread(new Runnable() {
public void run() {
setContentView(R.layout.setup_email_verification);
}
});
Log.e("User", currentUser.getPrefs().getData().toString());
}));``` But received this error ```io.appwrite.exceptions.AppwriteException: Invalid `url` param: URL host must be one of: localhost, cloud.appwrite.io, appwrite.io``` I added my domain in settings. Why i received error?
Recommended threads
- Permissions - Design Patterns
Hey Appwriters. I'm keen to tap into your database expertise. In my app I have nested collections: Canvas (think of it like Trello) Cards (just like Trello ca...
- Github push not triggering function depl...
I'm using appwrite cloud instance and connected my github account to appwrite successfully. I also configured the git settings of my appwrite functions. however...
- Python Flask Project Deploy
I am trying to deploy a Python Project works with Flask on Appwrite, but this is not working, domain shows 500 Error and Logs for any execution is not loading ...
