Questions tagged [google-one-tap]

108 questions
4
votes
3 answers

How to detect if user sign-in or signed-out using Google One Tap in Android Native Library (Java/Kotlin) and get credential data (tokens) on return?

Quoting Google link https://developers.google.com/identity/one-tap/android/get-saved-credentials If your Activity could be used by a signed-in user or a signed-out user, check the user's status before displaying the One Tap sign-in UI. So, how do…
4
votes
3 answers

One-tap login g_state cookie is not parseable on http.cookies SimpleCookie

I'm trying to integrate Google One-Tap login on our website. For backend, I am using a tornado server that uses http library to parse the Cookie header and setting it. More info about tornado cookie handling here. Basically Google One-Tap login adds…
Fred
  • 286
  • 2
  • 11
4
votes
0 answers

Android One Tap SignIn, nonce is missing from the generated ID Token

According to the documentation setNonce I expect the nonce will be included as a claim from the IDToken, however, after setting the nonce with the following code: oneTapClient = Identity.getSignInClient(getContext()); …
4
votes
0 answers

Google One Tap Sign In for subdomain

i want to ask about implement google one tap sign in, into subdomain first of all, i already add one tap into main domain let's say, https://www.example.com. and this domain is registered on google console i wanna put the one tap sign in into my…
4
votes
2 answers

Google One Tap SignIn Popup not showing

I was trying to implement Google One Tap SignIn in my project. At the first time after building the project the google one tap prompt will display. But next time onwards if we refresh the page also the prompt is not displaying. Here is my code…
Hrashikesh Naik
  • 145
  • 1
  • 6
4
votes
1 answer

Google One Tap Integration with Meteor

I am integrating a Meteor application with Google's One Tap. Attempting to use Meteor's loginWithGoogle in order to get the user to save to Meteor Accounts (built into Meteor.js). The complexity of this is that One-Tap library is not meant to…
3
votes
1 answer

Google One tap sign-in UI not displayed in incognito mode in chrome V8 or firefox (gsi library in angular)

Hello I'm using the Google one tap sign in ui but when in incognito mode (all cookie enabled) this is not displayed and nothing is happening. this is my code //@ts-ignore google.accounts.id.initialize({ client_id:…
Devtechk
  • 31
  • 3
3
votes
1 answer

Missing Feature{name=auth_api_credentials_begin_sign_in, version=7}

I use google One Tap Sign In and got following login failed message: Missing Feature{name=auth_api_credentials_begin_sign_in, version=7} I don't know what's wrong? Always failed at: .addOnFailureListener { beginSignInException -> …
Squall Huang
  • 647
  • 9
  • 20
3
votes
1 answer

OneTap Credential Saving failure on some devices

Having an issue on some devices when trying to Save Password with the Identity Credential service. We make this call: Identity.getCredentialSavingClient(activity).savePassword(savePasswordRequest) We have an onCompleteListener that is not getting…
Novacane
  • 119
  • 3
  • 14
3
votes
0 answers

Implementing one-tap sign in for interaction with backend

I'm implementing one tap sign in like described here and everything is basically fine(I can get a token, verify it on backend and so on) but I have got one question. Do I need to store this token locally and send it to backend for every call which…
3
votes
0 answers

Google One Tap throws error with cryptic message

After implementing Google One Tap I noticed some JS errors on the client side (these client-side errors are caught in the browser and sent to the backend; I can see them in the backend logs but cannot reproduce the issue in the client side) for…
3
votes
0 answers

How can i get the profile and user information using google one tap signin

I am trying to get the profile information using google one tap sign in and i am getting the clientId and credentials instead of users profile and i have used other gapi method also but i am not able to get it can anyone suggest how to…
mikkel Reng
  • 113
  • 1
  • 9
2
votes
0 answers

AWS Cognito User Pool with Google Sign In (Google One-Tap)

I setup a AWS cognito user pool which is enabled to login via a Google. I use aws-hosted login UI. With the Google sign-in, the creation of the user in the cognito userpool is done by AWS. I logged in with my Google user and the user is now present…
2
votes
0 answers

Google One Tap Javascript API/HTML API does not return nonce in JWT in Safari

When Google One Tap is implemented using Javascript API/HTML API including nonce, the returned JWT is missing nonce for Safari browser. Chrome and Fireforx returns the nonce as expected. Please refer the code used. const initializeGSI = () => { …
2
votes
0 answers

CSRF error when using passport-google-one-tap strategy

I am trying to implement Google One Tap sign-in and Sign in With Google in an Express.js app. I am already using Passport.js with the local strategy for email/password sign in, so I want to continue using Passport for the Google authentication as…