-
Notifications
You must be signed in to change notification settings - Fork 55
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
details: "You have created a new client application that uses libraries for user authentication or authorization that will soon be deprecated. New clients must use the new libraries instead; existing clients must also migrate before these libraries are deprecated. See the [Migration Guide](https://developers.google.com/identity/gsi/web/guides/gis-migration) for more information." error: "idpiframe_initialization_failed #78
Comments
Please fix, this is urgent problem |
fix it please |
Please fix it |
please fix it |
I am not sure, but doesn't #72 fix this? |
Your fix is for python backend example. We need fix for Vue part. |
Does anyone have a fix for this? |
Still no solution. |
Fix please |
please fix |
Please fix |
2 similar comments
Please fix |
Please fix |
If somebody only needs to get an auth code from google, here is a little workaround for a new google SDK implementation that works without plugin:
|
Temporary fix for this is to add
By default, new client IDs are now blocked from using the older platform library; existing client IDs are unaffected. New client IDs created before July 29th, 2022 may set the plugin_name to enable use of the legacy Google platform library. |
Does anyone have a fix for this? |
Hi, Any update? |
Any solution?????? |
it is a horror... |
|
You have to deactivate this plugin and use only my workaround. |
Thanks for your comments. |
I forgot to tell you that this workaround did work, thanks! I just wanted to ask about something else, is there a way to get the mobile app prompt? like when you try to sign in with google on a mobile app using something like Ionic. I don't think it's the best UX to transfer to a web page to sign in with google but all the answers were using java and I'm not experienced with java tbh |
Please let me know after the modification is completed, thank you |
@NyllRE You probably want redirect mode instead popup window. So you need to use this function:
More info here - https://developers.google.com/identity/oauth2/web/guides/use-code-model#redirect-mode |
@Luschor did you find a way to get the |
@Luschor thanks, The paragraph just above your link was exactly what I was looking for
EDIT For those who are still looking. If you need the ID Token (JWT Token) Add // https://developers.google.com/identity/gsi/web/reference/js-reference?hl=fr#CredentialResponse
google.accounts.id.initialize({
client_id: 'CLIENT_ID',
callback: response => {
const token = JSON.parse(atob(response.credential.split('.')[1]));
// ...
},
});
google.accounts.id.prompt(); |
This plugin does not support the new Google authentication system(GIS). |
I am using react-google-login and having the same error |
The text was updated successfully, but these errors were encountered: