You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I am migrating from @codetrix-studio/capacitor-google-auth in my Ionic project, following the documentation.
I call:
await SocialLogin.initialize({
google: {
webClientId: 'xxx.apps.googleusercontent.com',
iOSClientId: 'yyy.apps.googleusercontent.com',
}
});
And then the login:
const user: any = await SocialLogin.login({
provider: 'google',
options: {
scopes: ['email', 'profile'],
forceRefreshToken: true,
disableOneTap: true
}
});
On the web i get: Error 400: redirect_uri_mismatch.
Android works fine.
I don't have any Authorized redirect URIs in my Google Console.
Please assist.
Thank you very much!
The text was updated successfully, but these errors were encountered:
I am migrating from @codetrix-studio/capacitor-google-auth in my Ionic project, following the documentation.
I call:
await SocialLogin.initialize({
google: {
webClientId: 'xxx.apps.googleusercontent.com',
iOSClientId: 'yyy.apps.googleusercontent.com',
}
});
And then the login:
const user: any = await SocialLogin.login({
provider: 'google',
options: {
scopes: ['email', 'profile'],
forceRefreshToken: true,
disableOneTap: true
}
});
On the web i get: Error 400: redirect_uri_mismatch.
Android works fine.
I don't have any Authorized redirect URIs in my Google Console.
Please assist.
Thank you very much!
The text was updated successfully, but these errors were encountered: