508
questions
81
votes
32
answers
58k
views
New Google sign in Android
I'm trying to get a user token ID using the new Google play services 8.3
and as documented I pass the server ID:
GoogleSignInOptions gso = new GoogleSignInOptions.Builder(GoogleSignInOptions....
53
votes
13
answers
61k
views
Error 12501 authenticating with google sign-in
I'm using google sign-in services to authenticate users that use my app. I got it to work when I just requested email information
GoogleSignInOptions gso = new GoogleSignInOptions.Builder(...
47
votes
5
answers
18k
views
How to refresh expired google sign-in logins?
I'm using Google Sign-In. A user comes to my site and logs in with gapi.auth2.getAuthInstance().signIn(), or they are already logged in and when the page loads (or reloads) we fetch the status. At ...
41
votes
1
answer
16k
views
Documentation for the automatic "Continue as" Google popup
How do I get one of the automatic "Sign in with Google" frames on my site? It happens if you're signed into an account and visit Kayak.com for instance. Any documentation I come across is for the ...
32
votes
1
answer
10k
views
What is the difference between Google Identity Toolkit, Google OAuth, Firebase Auth and Google+ sign in
For my understanding, Google Identity Toolkit provides a layer for login with different accounts, like Facebook, Yahoo etc. but how does that differ from the Google OAuth implementation? And regarding ...
26
votes
5
answers
9k
views
Using Google OIDC with code flow and PKCE
after trial and error it seems to me that Google OIDC does not support the code flow without supplying the client secret:
https://developers.google.com/identity/protocols/oauth2/native-app#exchange-...
23
votes
1
answer
2k
views
Sign in to Google account with old password - how to redirect to blue Google Sign-In page?
I’ve implemented the Google Sign-In SDK into my application and it works fine.
When I click on the sign-in button, a window opens displaying the already stored accounts. Selecting one of those ...
21
votes
6
answers
8k
views
Google Identity One-Tap Sign-In Exception: Caller has been temporarily blacklisted due to too many canceled sign-in prompts
I am currently working on migration to One-Tap Sign-In, and after I tried few times on the device, my device gets blacklisted with exception (Caller has been temporarily blacklisted due to too many ...
20
votes
1
answer
1k
views
App and website saved password is not sync
Google Smart Lock feature implemented in my Android App.
I am trying to sync password b/w my website and my Android App.
According to this document, I have done all required changes.
My website is ...
17
votes
4
answers
11k
views
Why does the Sign In With Google button disappear after I render it the second time?
I am using the Sign In With Google button from Google Identity. I have put the HTML from this button documentation page into a React component. Looks like this:
export default function ...
16
votes
3
answers
5k
views
Google YOLO stop working : The client origin is not permitted to use this API
I assume it has something to do with this:
For me Google one Tap stopped working on all my sites that previously worked. I added API HTTP refer to restriction in console.developer.com, but I still ...
16
votes
1
answer
4k
views
How to use aws cognito to share session across apps for seamless user experience on device?
Once user is logged-in to any app he should not be asked for credentials for any other app. Sharing a single access-token stored in local storage seems a default but somehow bad idea. In case of ...
15
votes
6
answers
7k
views
Google's sign in button resizes after loading
I am following https://developers.google.com/identity/gsi/web/guides/display-button#javascript to add Google sign-in to my ReactJS app.
I added
<script>
function handleCredentialResponse(...
14
votes
8
answers
11k
views
[GSI_LOGGER]: The value of 'callback' is not a function. Configuration ignored
I'm migrating from Google Sign-in platform to the newer Google Identity Services library.
App.svelte:
<svelte:head>
<script src="https://accounts.google.com/gsi/client" async ...
14
votes
2
answers
5k
views
What is the difference between Identity Platform and Firebase Authentication with Identity Platform
Firebase has announced a new optional upgrade called Firebase Authentication with Identity Platform, however, the new features already exist on the GCP Identity Platform.
As mentioned in the ...