Module: ADAL::TokenRequest::GrantType

Included in:
ClientAssertion
Defined in:
lib/adal/token_request.rb

Overview

All accepted grant types. This module can be mixed-in to other classes that require them.

Constant Summary collapse

AUTHORIZATION_CODE =
'authorization_code'
CLIENT_CREDENTIALS =
'client_credentials'
JWT_BEARER =
'urn:ietf:params:oauth:grant-type:jwt-bearer'
PASSWORD =
'password'
REFRESH_TOKEN =
'refresh_token'
SAML1 =
'urn:ietf:params:oauth:grant-type:saml1_1-bearer'
SAML2 =
'urn:ietf:params:oauth:grant-type:saml2-bearer'