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:

483 questions
81
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,861
  • 1
  • 18
  • 27
53
votes
13 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,446
  • 1
  • 14
  • 24
46
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
  • 13,458
  • 5
  • 34
  • 50
39
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
  • 685
  • 1
  • 8
  • 14
31
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…
23
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,996
  • 12
  • 87
  • 136
22
votes
3 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…
20
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
5 answers

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 canceled sign-in prompts). Just wondering what's…
bagMan
  • 173
  • 1
  • 6
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
14
votes
4 answers

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 GoogleLoginButton() { return ( <>
14
votes
1 answer

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 Google apps on Android/web it surely does not use this…
12
votes
3 answers

Google identity - trigger sign in process on click of custom button

I am trying to integrate the new Google Identity API in my project. I have a custom button lets say a div.
Sign in with Google
Now I want Sign in to happen only on click of this button. I…
Prabhu
  • 121
  • 1
  • 3
11
votes
1 answer

Google Identity Services: How to preserve session

I'm migrating a web app that interacts with the google drive js api to the new Google Identity Services API and following this quickstart guide. GIS is mandatory, since the old one will no longer be in use from March 2023. In this guide, there is…
11
votes
2 answers

How to use scoped APIs with (GSI) Google Identity Services

Google recently sent me an email with the following: One or more of your web applications uses the legacy Google Sign-In JavaScript library. Please migrate your project(s) to the new Google Identity Services SDK before March 31, 2023 The project…
1
2 3
32 33