Support using ID token as the ouath access token.

This commit is contained in:
Wenlei (Frank) He 2019-03-08 09:20:43 -08:00
parent 8baca543ee
commit 339f3641d9
1 changed files with 11 additions and 5 deletions

View File

@ -69,6 +69,9 @@ type Config struct {
// PrivateClaims optionally specifies private claims in the JWT. // PrivateClaims optionally specifies private claims in the JWT.
PrivateClaims map[string]interface{} PrivateClaims map[string]interface{}
// UseIDToken optionally uses ID token instead of access token.
UseIDToken bool
} }
// TokenSource returns a JWT TokenSource using the configuration // TokenSource returns a JWT TokenSource using the configuration
@ -168,6 +171,9 @@ func (js jwtSource) Token() (*oauth2.Token, error) {
if err != nil { if err != nil {
return nil, fmt.Errorf("oauth2: error decoding JWT token: %v", err) return nil, fmt.Errorf("oauth2: error decoding JWT token: %v", err)
} }
if js.conf.UseIDToken {
token.AccessToken = tokenRes.IDToken
}
token.Expiry = time.Unix(claimSet.Exp, 0) token.Expiry = time.Unix(claimSet.Exp, 0)
} }
return token, nil return token, nil