Sha256: e7c6277b8c76f975d88965bb0e5c6463f420835129eecd1596e5c6c787d98177
Contents?: true
Size: 931 Bytes
Versions: 24
Compression:
Stored size: 931 Bytes
Contents
module Rack module OAuth2 module URN module TokenType JWT = 'urn:ietf:params:oauth:token-type:jwt' # RFC7519 ACCESS_TOKEN = 'urn:ietf:params:oauth:token-type:access-token' # draft-ietf-oauth-token-exchange REFRESH_TOKEN = 'urn:ietf:params:oauth:token-type:refresh-token' # draft-ietf-oauth-token-exchange end module GrantType JWT_BEARER = 'urn:ietf:params:oauth:grant-type:jwt-bearer' # RFC7523 SAML2_BEARER = 'urn:ietf:params:oauth:grant-type:saml2-bearer' # RFC7522 TOKEN_EXCHANGE = 'urn:ietf:params:oauth:grant-type:token-exchange' # draft-ietf-oauth-token-exchange end module ClientAssertionType JWT_BEARER = 'urn:ietf:params:oauth:client-assertion-type:jwt-bearer' # RFC7523 SAML2_BEARER = 'urn:ietf:params:oauth:client-assertion-type:saml2-bearer' # RFC7522 end end end end
Version data entries
24 entries across 24 versions & 1 rubygems