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
- 1:1 relationship doesn’t sync after re-a...
Hi, I’m trying to use a two-way one-to-one relationship. It works fine when I create a record with the relationship set, and it also works when I unset it. But ...
- Upsert with setting permissions
Hi there, I am using self-hosted appwrite v1.7.4 and trying to use the bulk update stuff that was released with 1.7.x. Unfortunally I found that there is an ser...
- Github connection error - Self Hosted Ap...
I am trying to connect my github account to deploy a project to sites, but Connect to Gtihub button is disabled. I have configured all Env variables needed for...