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
- vorafy.studio domain already exists erro...
My domain vorafy.studio is stuck/locked from a previously deleted project. I created a new project but can't add the domain — getting 'already exists' error. Pl...
- Unable to init function via cli
Hello! I have created a new self hosted instance of appwrite 1.9.6 and have connected to that insatnce with the cli 27.2.0 that was released a few hours ago. Wh...
- Appwrite-injected variables are not avai...
I am using rust-1.83 as a runtime and try to access APPWRITE_FUNCTION_API_ENDPOINT or APPWRITE_FUNCTION_API_KEY during runtime. Both are not set during my execu...