| Constants |
public
|
RESPONSE_CODE = 'code'
Authorization code
Authorization code
- [RFC6749] Section 4.1 ("Authorization Code Grant")
- [OpenID.Core] Section 3.1 ("Authentication using the Authorization
Code Flow")
|
#
|
public
|
RESPONSE_TOKEN = 'token'
Token
Token
- [RFC6749] Section 4.2 ("Implicit Grant")
|
#
|
public
|
RESPONSE_ID_TOKEN = 'id_token'
ID token
ID token
- [OpenID.Core] Section 3.2 ("Authentication using the Implicit Flow")
|
#
|
public
|
RESPONSE_ID_TOKEN_TOKEN = 'id_token token'
ID token + token
ID token + token
- [OpenID.Core] Section 3.2 ("Authentication using the Implicit Flow")
|
#
|
public
|
RESPONSE_CODE_ID_TOKEN = 'code id_token'
Authorization code + ID token
Authorization code + ID token
- [OpenID.Core] Section 3.3 ("Authentication using the Hybrid Flow")
|
#
|
public
|
RESPONSE_CODE_TOKEN = 'code token'
Authorization code + token
Authorization code + token
- [OpenID.Core] Section 3.3 ("Authentication using the Hybrid Flow")
|
#
|
public
|
RESPONSE_CODE_ID_TOKEN_TOKEN = 'code id_token token'
Authorization code + ID token + token
Authorization code + ID token + token
- [OpenID.Core] Section 3.3 ("Authentication using the Hybrid Flow")
|
#
|