Questions tagged [google-one-tap]

108 questions
2
votes
1 answer

Google Identity Services Login with React

I'm trying to implement Google Identity Services Login without third parties, everything works well because I get the response when I try to sign in, except for the error shown in the console: "Failed to load resource: the server responded with a…
2
votes
1 answer

How does Google One Tap know my Google Sessions across domains?

When Google One Tap is used on a website and if the user has signed in to Google before loading the web page, the user is presented with a consent and sign-in dialog including information about his/her Google session(s) (email address, profile…
2
votes
0 answers

Google one tap renderButton pop-up events

I'm using the google.accounts.id.renderButton() method with pop-up behavior. When I click this button I get a pop-up opened. Are there any onOpened and onClosed events I can subscribe to?
2
votes
1 answer

Vue 3 Google Sign-In User Authentication shows deprecated warning in console

I am trying to implement the Sign in using Google feature in my Vue 3 application, I found some npm packages to implement this feature, but these packages which are soon going to be deprecated (This warning is shown in console). I like to use Google…
Js Akhil
  • 23
  • 1
  • 7
2
votes
0 answers

How to specify scopes for One Tap Sign-in by google in Android?

Earlier using google sign-in for android one could have specified scopes to read mails of a user, but using Google Identity Services I am not able to find any option to provides scope, one work-around I found was using OAuth2.0 but its non-seamless.…
sarthak gupta
  • 826
  • 4
  • 12
2
votes
1 answer

accessing the googleOneTap function failure[10:Caller not whitelisted to call this API]

https://developers.google.com/identity/one-tap/android/create-new-accounts According to the above official documentation, when accessing the googleOneTap function, the third part Display the One Tap sign-up UI will occasionally receive To Error…
kenan
  • 21
  • 1
2
votes
3 answers

PHP Authentication with Google One Tap

I've insert "Google One Tap" in my website, then Google returns me "credential" and "g_csrf_token" with POST method. Now I want to know, how I get email address from this "credential" in PHP? Is there any PHP library or any module for Codeigniter…
George B.
  • 172
  • 2
  • 2
  • 14
2
votes
0 answers

Google OneTap Signup prompt not displayed in IOS chrome

We recenlty implemented the Google's OneTap signup feature in our web project. It works fine in web and in android mobile browsers. But we were not getting the prompt in IOS Chrome. As per the Google docs it should be covering IOS Chrome as…
Venkat
  • 139
  • 1
  • 8
2
votes
1 answer

How to do one tap signin and signup in Android

Here is my code which I followed from Google Developers page signInRequest = BeginSignInRequest.builder() .setPasswordRequestOptions(BeginSignInRequest.PasswordRequestOptions.builder() .setSupported(true) .build()) …
Vishali
  • 1,307
  • 4
  • 23
  • 41
1
vote
1 answer

JsonWebTokenError: secretOrPublicKey must be an asymmetric key when using RS256

I have the below codes using @types/google-one-tap library in Angular 14 project: // @ts-ignore window.onGoogleLibraryLoad = () => { // @ts-ignore google.accounts.id.initialize({ client_id:…
avi
  • 371
  • 1
  • 7
  • 20
1
vote
1 answer

Prevent Google One Tap to show on some pages

I am using both Google One Tap and Signin with Google button in my site. Google One Tap is showing on all pages and Signing with Google button is visible only on the login page. I am initializing both with the Javascript API. My question is how to…
Vladimir Gatev
  • 401
  • 1
  • 5
  • 18
1
vote
1 answer

Cannot import google-one-tap types in angular component

I have installed google-one-tap typings in my angular application, but I cannot use it the component. I am trying to import it like this: import * as google from 'google-one-tap'; Compiler gives me an error: Module not found: Error: Can't resolve…
Liam
  • 21
  • 1
1
vote
0 answers

How to change google's one tap prompt language?

Currently, Google One Tap prompt is only rendered in English. Is there a way we can pass the locale to the javascript API so that the prompt gets rendered in that specific language? window.google.accounts.id.initialize({ client_id: CLIENT_ID, …
1
vote
2 answers

Angular SocialAuthService google. How to close google tap (credential_picker_container)?

I use angular 14. Before updating I have used angular 13 with @abacritt/angularx-social-login 1.1.0, now It has been updated to ^1.2.5 and appeared one tap google auth iframe. I do auth with my own service and when client authed, we are moving to…
1
vote
0 answers

Google one tap in android

I'm useing Google one tap for signup and signin users in my android app. So,I make AndroidClient in GoogleCloud and my app is work correctly. After few days I had reinstall Android studio, when Android Studio is reinstalled : My app's SHA1 in…