кеni
When I try to run the following I'm getting an error from Google:
TypeScript
account.createOAuth2Session(
"google",
"http://localhost:5175",
"http://localhost:5175/failed"
)
}
Any idea what I'm missing or how I can debug? My app is currently being verified by Google (i.e it's not in testing mode).
TL;DR
Developers are facing an OAuth Redirect URI Mismatch error when trying to run Google sign-in due to incorrect URI configuration. To resolve this, ensure that the redirect URIs in the Google Cloud Console match the ones used in the code (both http://localhost:5175 and http://localhost:5175/failed). Additionally, verify that your app status in Google is set to testing mode during the verification process. Recommended threads
- Invalid document structure: missing requ...
I just pick up my code that's working a week ago, and now I got this error: ``` code: 400, type: 'document_invalid_structure', response: { message: 'Inv...
- Apple OAuth Scopes
Hi Hi, I've configured sign in with apple and this is the response i'm getting from apple once i've signed in. I cant find anywhere I set scopes. I remember se...
- Sign In With Apple OAuth Help
Hi All! I've got a flutter & appwrite app which Im trying to use sign in with apple for. I already have sign in with google working and the function is the sam...