Skip to content

Commit

Permalink
adding id_token type
Browse files Browse the repository at this point in the history
  • Loading branch information
aeitzman committed Dec 1, 2023
1 parent f2ab1a2 commit b2552eb
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,8 @@ public abstract class ExternalAccountCredentials extends GoogleCredentials {
public enum SubjectTokenTypes {
AWS4("urn:ietf:params:aws:token-type:aws4_request"),
JWT("urn:ietf:params:oauth:token-type:jwt"),
SAML2("urn:ietf:params:oauth:token-type:saml2");
SAML2("urn:ietf:params:oauth:token-type:saml2"),
ID_TOKEN("urn:ietf:params:oauth:token-type:id_token");

public final String value;

Expand Down

0 comments on commit b2552eb

Please sign in to comment.