There was an error processing your request. Please check the inputs and try again.
TypeScript
Future<ThinklyUser?> loginWithGoogle() async {
try {
await logout();
await account.createOAuth2Session(
provider: OAuthProvider.google,
success: kIsWeb ? oAuthRedirect : null,
);
await Future.delayed(const Duration(milliseconds: 20));
return await getUser();
} on PlatformException catch (e) {
Utils.debLog(e.message);
// Utils.toast(e.message ?? "");
return null;
}
}
web aslo same error restarted server , ran the migration script the same with the apple provider also
Appwrite server 1.6.1 appwrite: 14.0.0
TL;DR
Error 400 general_bad_request when trying to login with Google and Apple providers. Issue persists on web. Server and migration script were restarted. Appwrite server version 1.6.1 and appwrite version 14.0.0.
Solution: Update Appwrite to a newer version, as this may resolve the error.Recommended threads
- 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....
- User ID case sensitivity
I see that through REST (and SDK as well), getting a user is not case sensitive. And even though documentation does not clearly state that it is, the wording "V...
- Any way to temporarily bypass the email ...
Hey guys, any way to bypass the email verification to use the accounts again? i need to recover some projects that due to recent changes have been stopped, and ...