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
- Project in AppWrite Cloud doesn't allow ...
I have a collection where the data can't be opened. When I check the functions, there are three instances of a function still running that can't be deleted. The...
- Get team fail in appwrite function
I try to get team of a user inside appwrite function, but i get this error: `AppwriteException: User (role: guests) missing scope (teams.read)` If i try on cl...
- Deep Linking & Password reset
I am using react native with expo. I want to implement deep link with the url recived via email. So when clicked the link it opens my app. I havent ever used de...