Skip to main content
Filter by
Sorted by
Tagged with
2 votes
0 answers
246 views

I'm want to use the identity platform REST API to sign in my users. But looking at the documentation here I can't seem to find how to sign in a user using SSO or Phone number. How can I do this? Or ...
anonymous-dev's user avatar
3 votes
1 answer
181 views

I want to setup a cloud function via Terraform for beforeSignIn event in Google Identity Platform. Google cloud documentation explains how to do this manually as shown in this screenshot. My question ...
user1573278's user avatar
0 votes
2 answers
635 views

I was informed by google that the google_signin2 will be sunset and I need to move to their Identity Services. Signin2 was working fine and using HTML with JavaScript. I am trying to get Google's ...
glez's user avatar
  • 1,214
1 vote
1 answer
982 views

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 ...
Vladimir Gatev's user avatar
0 votes
1 answer
286 views

I am trying to configure Google Cloud Identity Platform to use multiple SAML identity providers. Still, I'm stuck at the point of selecting the right IdP for every person attempting to log in. I have ...
Ahmad Othman's user avatar
  • 1,355
0 votes
0 answers
122 views

I would like to access all my Flask routes of my Python application running in a Google App Engine only from a React-JS frontend and therefore deny all other requests which are not coming from that ...
mvn1587's user avatar
  • 11
0 votes
1 answer
441 views

I have this code to generate an access token for a GCP Cloud Function 2nd gen: const {IAMCredentialsClient} = require('@google-cloud/iam-credentials'); // Creates a client const client = new ...
ChristianOConnor's user avatar
3 votes
1 answer
549 views

I am trying to use the Sign In with Google button from the Google Identity Service. Each time I render one of the Sign In with Google buttons the font flickers. The flickering seems to coincide with ...
user18729280's user avatar
1 vote
0 answers
54 views

We are currently implementing feature on our server to allow our B2B customers to connect their own SSO method. So we will automatically register a user if he doesn't have any account. But we will ...
gizon_dev's user avatar
1 vote
1 answer
742 views

I currently still use GAPI for a project that accesses the YouTube Data API with endpoints that require authorization. Very briefly, this is the current implementation: User clicks "Log in with ...
user20418895's user avatar
2 votes
1 answer
1k views

I'm currently integrating a frontend with a 3rd party backend that offers sign-in with social media. I'm using the Google JS SDK https://accounts.google.com/gsi/client which works fine with the one-...
Rob H's user avatar
  • 46
1 vote
0 answers
1k views

I am trying to implement authentication using Google in react as below. useEffect(() => { /* global google */ google.accounts.id.initialize({ client_id: "62032923843-...
Amos Machora's user avatar
1 vote
0 answers
115 views

I have implemented the updated Google Sign In for Web into my website however, I am unable to style to be responsive of the browser size and screen its displayed on. I have the following code right ...
Parth's user avatar
  • 11
2 votes
1 answer
553 views

I am trying to support multiple Sign In with Google buttons on the same webpage that all need to be configured with unique callback functions. It seems as though a callback function can only be ...
user18729280's user avatar
2 votes
1 answer
1k views

I'm currently using google.accounts.oauth2.initTokenClient and then tokenClient.requestAccessToken() to prompt the user to select an account. Then, I'm using the access_token from the TokenResponse of ...
joshua1991's user avatar
0 votes
0 answers
2k views

I am trying to create a custom claim in google identity for my application (xcreds) to pull from. Basically I'm trying to use xcreds mac password syncing tool and currently it works for users whos' ...
ntauthy's user avatar
1 vote
0 answers
314 views

Background We are building an app which authenticates end user using Firebase Authentication (backed by GCP Identity Platform). At the same time, we leverage some Google API of which permission is set ...
Cupid Chan's user avatar
0 votes
1 answer
1k views

I'm trying to add Google authentication to my Azure Functions app which will be used from a Svelte static web app (SWA). The SWA uses Google Identity (https://accounts.google.com/gsi/client) to both ...
Wouter's user avatar
  • 2,269
1 vote
0 answers
716 views

I have a test web app, with the Sign In with Google button + One Tap UX configured with a data-nonce : <div id="g_id_onload" data-client_id="<%=...
RubenLaguna's user avatar
  • 25.5k
1 vote
1 answer
542 views

After migrating to GIS sign-in, I am getting an issue that the given jwt token is expired in 1 hour and I cannot find any other way to renew it. It's annoying the user to logout and login again. When ...
Nandha MV's user avatar
  • 489
2 votes
1 answer
2k views

I have a trouble right now with an access token received from Google Identity Services. Some details about the case. I have full stack application, back-end based on Spring/Webflux/Hibernate-Reactive ...
Petar Dimitrov's user avatar
1 vote
0 answers
642 views

Google recently launched its new Google Identity platform and deprecated its old "Google Sign-In for Web" platform. I'm trying to add my own customized Google Sign-In button to a Phaser 3 ...
user3871's user avatar
  • 12.7k
3 votes
2 answers
2k views

I added a "Sign In with Google" button to my test web app. I tried to add a CSP following the advise at Setup instructions > Content Security Policy: script-src https://accounts.google....
RubenLaguna's user avatar
  • 25.5k
1 vote
0 answers
992 views

According to this documentation, https://developers.google.com/identity/oauth2/web/guides/use-token-model , which says: Token expiration By design, access tokens have a short lifetime. If the access ...
Mike Hogan's user avatar
  • 10.8k
0 votes
1 answer
986 views

I'm trying to use the Google Identity > Sign In With Google for Web on a test web application. I followed the Display the Sign In With Google button and the button (and the One Tap) show the way I ...
RubenLaguna's user avatar
  • 25.5k
1 vote
0 answers
596 views

I'm making an app that connects to a google calender. I would like make the "sign-up with google" and "authorize to access calender" flow as seamless as possible. My understanding ...
BrightEyed's user avatar
4 votes
0 answers
354 views

I have a single page web application that uses Google Sign-In for Web that is being deprecated. I have followed the migration guide and logging in works as expected. However, when the app restarts I ...
Tom's user avatar
  • 395
2 votes
1 answer
268 views

What I need to do is to be able to log in with GIS, and then fetch an URL that would end with the {user.email} we just got from decoding the JWT. Here is my code : interface userI { name: ...
Alexis's user avatar
  • 21
1 vote
1 answer
384 views

Google started making important changes to user's auth flow : 2018 post about scopes granularity And here is another blog post about it on 2021 : 2021 post about scopes granularity Recently (last week)...
BorisD's user avatar
  • 1,864
0 votes
0 answers
93 views

Hi please help providing answers on dealing with new Google Identity Service library access token using implicit flow. Everytime I refresh my app, it will prompt you to login. Is there a way to tell ...
Realizt30's user avatar
  • 183
0 votes
0 answers
90 views

I'm trying to either force a user to re-log into their SSO (which seemed not supported in these three SSO services) or check if they are still "logged in" from the view of the third-party ...
Peter's user avatar
  • 3
0 votes
1 answer
207 views

According to the official firebase docs for implementation of google login, you create a listener/observer (onAuthStateChanged) that will emit a user once your user has successfully gone through the ...
telestrial's user avatar
3 votes
1 answer
716 views

I'm converting my web app to use Google Identity Services, and am using the token model as illustrated at Token Model example. For the token client I've specified the prompt property as an empty ...
zscrdd's user avatar
  • 51
2 votes
0 answers
645 views

I need some assistance setting up OIDC auth in Google's Identity Platform. I have setup Oauth2 authentication before, but this is slightly different, and I feel like I'm missing something basic, and ...
Grey's user avatar
  • 419
1 vote
0 answers
207 views

According to the docs: https://www.npmjs.com/package/@react-oauth/google , the first step involves wrapping your app in GoogleOAuthProvider When I do this I get the following error in my console: App....
Lak's user avatar
  • 35
0 votes
1 answer
432 views

We are trying to Sign In the user using OpenID Connect provider - using Code Flow (works fine with implict flow). Issue we are experiencing is that our OIDC provider requires private_key_jwt auth ...
igpe's user avatar
  • 143
1 vote
1 answer
414 views

My front-end application successfully asked for authorization from the user, got a token from the Google API, sent it to an endpoint on my backend, and my .net app used the GoogleJsonWebSignature....
Randy Hall's user avatar
  • 8,337
1 vote
1 answer
456 views

We have an iOS app that authenticates users using Firebase Authentication and an OAuth provider. When the authentication web view opens, the app first accesses *project*.firebaseapp.com before ...
Paulw11's user avatar
  • 116k
3 votes
1 answer
1k views

After obtaining authorization token: const tokenClient = google.accounts.oauth2.initTokenClient({ client_id, scope, callback, }); // ... tokenClient....
Alexander's user avatar
1 vote
1 answer
2k views

I attempted to add the Google Identity services script to nuxt.config.ts, which should expose window.google. // https://v3.nuxtjs.org/api/configuration/nuxt.config export default defineNuxtConfig({ ...
ap-1's user avatar
  • 13
2 votes
0 answers
444 views

Is there a way to have the redirection callback from Google SSO made as a POST request instead of a GET request, that way all the parameters would be encoded in the body. Microsoft allows it by ...
I-SF's user avatar
  • 21
1 vote
0 answers
357 views

I have a custom button for signing in with Google and I am triggering google.accounts.id.prompt with a JS onclick event. I have noticed that first there is a call to https://accounts.google.com/gsi/...
teomor's user avatar
  • 164
3 votes
1 answer
2k views

My flutter web app uses the 'google_sign_in' package to authenticate the users. I received an email telling me to migrate to the new Google Identity Services (GIS) before March 31, 2023. I could not ...
Ones-and-zeroz's user avatar
1 vote
1 answer
887 views

per https://developers.google.com/identity/oauth2/web/reference/js-reference There doesn't seem to be a refresh_token flow. The expiration is 1 hour, so it's not terrible. But I'd like to extend the ...
azBrian's user avatar
  • 668
3 votes
1 answer
1k views

I am unable to get Google's one tap sign in implementation to work. The code runs, the button works however, the addOnSuccessListener never runs. I don't understand what the issue could be, as ...
ibbs's user avatar
  • 90
0 votes
1 answer
199 views

The documentation says the jti identifies the event and "is unique to the stream". That means it could be repeated in multiple streams. What differentiates the stream? And how can I make ...
Felipe Müller's user avatar
14 votes
2 answers
6k views

Firebase has announced a new optional upgrade called Firebase Authentication with Identity Platform, however, the new features already exist on the GCP Identity Platform. As mentioned in the ...
AliOz's user avatar
  • 485
0 votes
1 answer
499 views

I have set up "Google Identity Platform" and can obtain the access token via firebase-ui web using following code snippet: user.getIdToken().then(function (accessToken) { console.log(...
Mohammad Nikravan's user avatar
1 vote
2 answers
3k views

I have created a login button with google identity javascript api https://developers.google.com/identity/gsi/web/guides/display-button#javascript I have successfully returned a jwt token and decoded ...
Gandalf's user avatar
  • 13.7k
2 votes
0 answers
201 views

I am migrating our code from the older Google authentication API to the new Google Sign-in stuff. What I want to do is be able to use our existing "continue with Google" button, and trigger ...
Andy Wallace's user avatar

1 2
3
4 5
11