Skip to content

Commit

Permalink
Merge pull request #176 from indeewari/federated_tokens
Browse files Browse the repository at this point in the history
Sharing federated tokens in oidc authentication
  • Loading branch information
indeewari authored Mar 8, 2024
2 parents 9ec9257 + 6b2d037 commit 507865b
Show file tree
Hide file tree
Showing 4 changed files with 658 additions and 10 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,12 @@ public class OIDCAuthenticatorConstants {
public static final String ID_TOKEN_PARAM = "idToken";
public static final String SESSION_DATA_KEY_PARAM = "sessionDataKey";
public static final String CLIENT_ID_PARAM = "clientId";
public static final String REFRESH_TOKEN = "refresh_token";
public static final String EXPIRES_IN = "expires_in";
public static final String SHARE_FEDERATED_TOKEN_CONFIG = "ShareFederatedToken";
public static final String SHARE_FEDERATED_TOKEN_PARAM = "share_federated_token";
public static final String FEDERATED_TOKEN_ALLOWED_SCOPE = "FederatedTokenAllowedScope";
public static final String FEDERATED_TOKEN_SCOPE = "federated_token_scope";

private OIDCAuthenticatorConstants() {

Expand Down
Loading

0 comments on commit 507865b

Please sign in to comment.