Questions tagged [google-identity]

The Google Identity Platform consists of identity tools from Google to help you quickly build an authentication system for reducing the friction of getting users into your app.

The Google Identity Platform consists of identity tools from Google to help you quickly build an authentication system for reducing the friction of getting users into your app.

Currently the Google Identity Platform is built of:

246 questions
78
votes
32 answers

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.DEFAULT_SIGN_IN) …
Metwalli
  • 1,701
  • 1
  • 16
  • 24
49
votes
12 answers

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(GoogleSignInOptions.DEFAULT_SIGN_IN) …
JamMaster
  • 1,402
  • 1
  • 12
  • 24
43
votes
5 answers

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 this point I have an identity token good for an hour…
stickfigure
  • 12,641
  • 4
  • 30
  • 46
26
votes
1 answer

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 Google+ sign in, it is still using OAuth, but…
25
votes
1 answer

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 older "Sign in with Google" button. Here's what it…
Hem
  • 495
  • 5
  • 13
24
votes
1 answer

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 accounts successfully ends the sign-in process. The one…
deadfish
  • 11,064
  • 11
  • 79
  • 125
16
votes
1 answer

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 :https://developers.google.com/identity/smartlock-passwords/android/associate-apps-and-sites I have…
16
votes
3 answers

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 get a warning message "The client origin is not…
tsukasagenesis
  • 171
  • 1
  • 4
10
votes
2 answers

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-authorization-code According to the latest best…
10
votes
2 answers

How to test Google One-tap on localhost? Getting a 403

The banner at the top of https://developers.google.com/identity/one-tap/web/overview says that while we must be on the whitelist to deploy this on a production site, we can test it out on localhost. However, when I try this, I still get a 403…
Weston
  • 1,782
  • 1
  • 18
  • 26
10
votes
1 answer

Occured an INTERNAL_ERROR when requestEmail from GoogleSignInOptions Android

I'm following google instruction to add sign in with google button to my app. If I request sign in without requestEmail() GoogleSignInOptions gso = new GoogleSignInOptions.Builder(GoogleSignInOptions.DEFAULT_SIGN_IN) .build(); It…
Choxmi
  • 1,304
  • 3
  • 22
  • 38
9
votes
2 answers

How to determine if google auth2.signIn() window was closed by the user?

Im implementing auth using this and am currently showing a loading icon in React when a user clicks the button to sign in and the auth2 account selection/login window shows. However if a user closes the window, there doesnt seem to be any event…
9
votes
1 answer

Google+ vs Google Identity Platform API

tl;dr: can someone explain what exactly is the difference in implementing client-side Google login flow between these two platforms? The backstory: I've been trying to implement client-side Google sign in to my website. First, I implemented the…
Idefixx
  • 462
  • 4
  • 20
8
votes
3 answers

Google One-tap project status

Does anyone know what is the status of Google One-tap AKA YOLO project? It seems like all the official documentation on One-tap is gone. The cached version states: The beta test program for this API is currently closed. We are improving the API's…
d3n
  • 83
  • 6
8
votes
1 answer

Google Sign In API: isSignedIn.get() returning inconsistent values

I'm trying to check if a user is signed in or not, but I'm getting really inconsistent results that seem to have some sort of race condition involved. I basically took the code Google Developer Website: gapi.load('auth2', function() { auth2 =…
Dennis
  • 938
  • 7
  • 17
1
2 3
16 17