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
0
votes
0 answers

How can I get a larger quantity of google play id

How can I get a larger quantity of google play id I have a site for an android applications but I need to get the largest amount of id google So you can share them on your site
0
votes
0 answers

Is there any way to identify through javascript if the browser and platform combination supports One tap sign-up and auto sign-in?

As per One Tap sign-up and auto sign-in documentation https://developers.google.com/identity/one-tap/web/troubleshooting One tap sign-up and auto sign-in works in some browser and platform combinations and As the library is security sensitive,…
0
votes
1 answer

SmartLock disableAutoSignIn() stopped working returning 403

Google SmartLock for web seems to have a broken disableAutoSignIn() function. This used to work but about a week ago the url the function calls to sign you out is now returning a 403…
Ross
  • 3
  • 1
0
votes
1 answer

appIdentityService.signForApp (Java) and app_identity.sign_blob (Python) results are different

I need to sign JWT using Google Cloud appIdentity. I tried using python agent and it is working. But the Java client gives signature error. So I run test code to get signature of same input from Java and Python. It returns different result. python…
0
votes
2 answers

Identity Server 4 - federated logout of google when used as an idp

I have google configured as an external identity provider. How do I configure IdentityServer to also log out of this external identity provder as well as all my client applications? FYI, the client application sign out is already working. Just…
cgipson
  • 378
  • 1
  • 16
0
votes
1 answer

Is One tap sign-in Oauth2 under the covers

Can we repoint the One tap sign-in to another Oath2 identity provider and have it work?. The docs state so, but I've not seen any examples. Is it too new? When did it come into existence.
cramhead
  • 1,057
  • 8
  • 21
0
votes
0 answers

googleyolo.retrieve() is always showing google signin iframe on reload

I expected googleyolo.retrieve() to automatically signin, but it's showing the iframe to ask permission/to select the user every time. Here is my code it should work via localhost This is my retrieve promise const retrievePromise =…
madhu131313
  • 7,003
  • 7
  • 40
  • 53
0
votes
1 answer

How to retrieve email address from id_token Google Javascript API client (GAPI)

I have an SPA with Firebase backend and have integrated Google Calendar access. To be able to authorise a user to use his/her Google Calendar I am using the gapi.auth2.authorize(params, callback) method. (this as opposed to the regular…
0
votes
1 answer

Check if auto signed in user is gsuite user

Hi i got a domain application which only allows users connected to our gsuite domain to login to. Recently my boss would like me to integrate Auto sign-in But i of course would need to check if they are using a gsuite account and not a normal user…
Lars Dormans
  • 171
  • 1
  • 13
0
votes
1 answer

Is it possible to retrieve an OAuth2 access token from Google with client secret file of Google Apps Script project?

I want to reuse the OAuth2 client-secret of a Google Apps script project to access Google APIs on behalf of this script (e.g. via Sheets API reading a spreadsheet where the script has access). Users with a Google account granted the necessary scopes…
Ani
  • 1,377
  • 1
  • 18
  • 29
0
votes
2 answers

How to close the One-Tap hint when user logs in with another method?

I managed to implement the relatively new One-Tap sign-up/sign-in flows, following the get started guide here. I also have other login methods working on the same project (facebook login and email/password login). When the user logs in using one of…
Bernardo SOUSA
  • 476
  • 4
  • 15
0
votes
1 answer

Auth0.js: Is there a way to silently replace a google access_token into an auth0 access_token?

auth0 version: 9.3.3 I'm developing a chrome extension that uses Google Identity API. When my extension is loaded when the user is already authorized by Google, so it seams like an overhead to show the authentication popup again by…
MMM
  • 103
  • 13
0
votes
1 answer

Can I specify additional scope in Google Auto Sign-in?

I am trying to access user's google drive while logging them in the site using google's auto sign-in described here Is that possible to get for google user's permission for google drive while the user tap on the agree to sign in button…
hkCitizen
  • 27
  • 6
0
votes
1 answer

Google One-Tap-Login - "No credentials avaliable" error

I am trying to follow the simplest of examples of how to setup up Google's " One tap sign-up and automatic sign-in" in a web page. Just copy and pasting the code provided by google, I get an exception "No credentials available". Why? How to fix…
0
votes
1 answer

Google Yolo doesn't return an access_token nor gender info

I'm implementing the one-tap signIn for my site. With the normal Google SignIn, i can do this: window.gapi.auth2.getAuthInstance().signIn() .then((googleUser) => sendAccessTokenToServer(googleUser.getAuthResponse().access_token)) Thanks to…