65
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(...
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 ...
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 ...
11
votes
1
answer
13k
views
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....
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 ...
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 ...
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-...
12
votes
2
answers
14k
views
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 ...
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 ...
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
3
answers
10k
views
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.
<div class="cust1" onclick="triggerGoogleSignIn">Sign in with ...
8
votes
1
answer
5k
views
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 ...
8
votes
4
answers
2k
views
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 ...
7
votes
2
answers
3k
views
Refresh Google OAuth2 Token Automatically
I'm trying implement a photo uploading to Google Drive feature (using the Google Drive API and GIS) into a web app that I'm working on, but can't seem to figure out how to keep a user authenticated ...