My Oauth now gives this error, but was working earlier
Future<void> signInGoogle() async {
print("creating session");
await account.createOAuth2Session(
provider: OAuthProvider.google,
);
print("session created");
}
This is my code line
I am using flutter for my project
TL;DR
Developers experiencing sudden 400 error with Oauth that was previously working.
Issue likely related to creating OAuth2 session using Flutter.
Ensure all necessary configurations are correct
Check changes in external services, like Google API updates
Debug the OAuth process step by step to identify the cause