Documentation
¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type AuthorizeImplicitGrantTypeHandler ¶
type AuthorizeImplicitGrantTypeHandler struct {
// Enigma is the algorithm responsible for creating a validatable, opaque string.
Enigma enigma.Enigma
// Store is used to persist session data across requests.
Store ImplicitGrantStorage
// AccessTokenLifespan defines the lifetime of an access token.
AccessTokenLifespan time.Duration
}
CodeAuthorizeEndpointHandler is a response handler for the Authorize Code grant using the explicit grant type as defined in https://tools.ietf.org/html/rfc6749#section-4.1
func (*AuthorizeImplicitGrantTypeHandler) HandleAuthorizeEndpointRequest ¶
type ImplicitGrantStorage ¶
type ImplicitGrantStorage interface {
CreateImplicitAccessTokenSession(string, fosite.AuthorizeRequester, *core.AuthorizeSession) error
}
Click to show internal directories.
Click to hide internal directories.