Skip to main content

All Questions

Tagged with
1 vote
0 answers
81 views

How to Exclude Email Address from JWT with Google Identity Services using Only openid Scope

I'm working on a React application and leveraging Google Identity Services for user authentication. My goal is to authenticate users without requesting or accessing their email addresses. According to ...
Sophia's user avatar
  • 43
1 vote
0 answers
800 views

How to extend user session when Google Identity Token expires after 1 hour?

I am successfully creating and using a JSON Web Token based on the documentation available at https://developers.google.com/identity/gsi/web/guides/overview. <html> <head> <...
Tom Scheifler's user avatar
2 votes
1 answer
1k views

Refreshing an access token received from Google Identity Services / React App

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
1 answer
1k views

Validate Google Identity CredentialResponse JWT using Node.js

I'm currently implementing Sign in With Google on a website of mine using the callback approach. So far it works; a user clicks a button, a network call is made, and a JWT is returned. At this point I ...
Thomas Hunter II's user avatar
0 votes
0 answers
146 views

In new Google identity services i need simple google signin to access 'getBasicProfile' via HTML API without TOKEN

Is it possible to access 'getBasicProfile' details as in earlier version of platform library without token [Like simple AUTHENTICATION], where i am having my own authserver which will generate token ...
Armani_bologne's user avatar
1 vote
0 answers
305 views

ID_Token and Access_Token in Google IDP

I have an application which currently works with Azure AD Oauth 2.0. It accepts the JWT token from AAD as a access_token and signs the user in. I am trying to setup this with Google IDP and I am ...
dunantsm's user avatar
1 vote
1 answer
1k views

Which Key Do We Use When Verifying Google ID Tokens

We're verifying a Google ID Token on ColdFusion servers. We have everything working but one thing puzzles me: In the instructions here Google says to use their public keys to verify the token. When ...
CFMLBread's user avatar
  • 754
0 votes
2 answers
731 views

Unable to decode credential from JWT

I am trying to implement the new "Sign in with Google" button as described in https://developers.google.com/identity/gsi/web/guides/display-button. Everything is fine, and I am able to get a ...
xgretsch's user avatar
  • 1,413
0 votes
1 answer
880 views

Google IAP Public Keys Expiry?

This page provides public keys to decrypt headers from Google's Identity Aware Proxy. Making a request to the page provides its own set of headers, one of which is Expires (it contains a datetime). ...
Noam Hacker's user avatar
  • 4,817
5 votes
1 answer
4k views

To add google group as claims into a token

We would like to use google as identity provider for our own identity server. My problem is I would like to generate a jwt access token on our identity server side which contains google groups (Google ...
Vasily Makashov's user avatar
0 votes
1 answer
97 views

Creating a user account based on the info in a GITkit JWT idtoken payload?

What is the best way to uniquely identify a user starting from the data inside the JWT payload? I will not use the email address alone (or a salted hash of it for that matter) as the primary key of ...
Daniel F's user avatar
  • 14.2k