AppAuth/OIDC
AppAuth/Generic OAuth2 configuration will support login through the BlueFletch Browser, as well as Chrome Custom Tabs. The authenticating browser is defined by the browser value.
Field | Description |
---|---|
issuer_url | string The configured issuer URL for the identity provider. |
client_id | string The configured client ID for this application. |
redirect_url | string The configured redirect callback URL for this application. The recommended callback URL is |
redirect_url_verify | string Specifies the redirect URL used when refreshing cookies during the verification after reauthentication. Always set the value as |
scopes | string The OpenID scope values required for the identity provider. |
baseUrl | string Base URL for the identity provider. |
authorize_url | string The full URL for the |
token_url | string The full URL for the |
logout_url | string The full URL for the |
logout_redirect | string The full URL for the logout redirection location for your IdP. Default is |
userinfo_url | string The full URL of the |
resource | string Specifies the host to access for a token during login when the IdP does not provide it through |
alternateResource | string Specifies an additional resource for which the access token should be valid. By default, Azure generates an encrypted access token for use with Microsoft Graph. By specifying an alternate host, the token becomes a standard access token. (e.g. |
login_hint | string Hint to be displayed for the username field on the identity provider login page. |
ignoreExpiresIn | boolean If |
browser | string Specifies the browser package name to execute the |
refreshThresholdInMins | integer The number of minutes after which the launcher will automatically refresh the token if |
auth_location_field | string An optional setting that tells authorization which field in the auth provider response contains location information. Used in conjunction with |
auth_location_regex | string A regular expression to extract the location value from the location field. Used in conjunction with |
auth_group_field | string An optional setting that tells authorization which field in the authentication provider response contains group information. Used in conjunction with |
auth_group_regex | string A regular expression to match against the group information. Used in conjunction with |
auth_group_regex_true | string If the regular expression |
auth_default_group | string A default group. |
auth_role_field | string An optional setting that tells authorization which field in the authentication provider response contains user role information. Used in conjunction with |
auth_role_regex | string A regular expression to match against the role information. Used in conjunction with |
auth_role_regex_true | string If the regular expression |
auth_default_role | string A default user role. |
claim_userId | string The claim in the access token that contains the user ID of the logged-in user. |
claim_username | string The claim in the access token that contains the display name of the logged-in user. |
claim_groups | string The claim in the access token that contains the logged-in user's membership groups. |
userinfo_attrs | string A comma-delimited list of names indicating the field names within the |
fieldForProfileManagerOAuth | string Identifies the field to use when building the Profile Manager / PTT Pro OAuth value. By default, OAuth is set to the logged-in user id. Setting this key to another field allows for using another claim in the Access token or User Information request object. Supports replacement format, for example: |
Example:
Okta Example:
Last updated