Documentation
¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type BeginAuthorizeRequest ¶
type BeginAuthorizeRequest struct {
ResponseType ResponseType `query:"response_type"`
ClientID string `query:"client_id"`
Scope string `query:"scope"`
RedirectURI string `query:"redirect_uri"`
State string `query:"state"`
CodeChallenge string `query:"code_challenge"`
CodeChallengeMethod string `query:"code_challenge_method"`
}
type GrantType ¶
type GrantType string
const (
GrantTypeAuthorizationCode GrantType = "authorization_code"
)
type PostAuthorizeRequest ¶
type PostAuthorizeRequest struct {
ResponseType ResponseType `form:"response_type"`
ClientID string `form:"client_id"`
Scope string `form:"scope"`
RedirectURI string `form:"redirect_uri"`
State string `form:"state"`
CodeChallenge string `form:"code_challenge"`
CodeChallengeMethod string `form:"code_challenge_method"`
GroupIDs []uuid.UUID `form:"group_ids[]"`
Sig string `form:"sig"`
}
Click to show internal directories.
Click to hide internal directories.