Compare commits

..

No commits in common. "d464e2ee387643c4735e7208d5ff375e8f79e118" and "0cc3176be13cb34c5efe5804e6779a6331e3e60b" have entirely different histories.

1 changed files with 2 additions and 2 deletions

View File

@ -52,7 +52,7 @@ type (
// value, the authorization server MUST NOT issue an access
// token for this authorization code. Only the user's profile
// URL may be returned without any scope requested.
Scope domain.Scopes `form:"scope,omitempty"`
Scope domain.Scopes `form:"scope"`
// The URL that the user entered.
Me *domain.Me `form:"me"`
@ -64,7 +64,7 @@ type (
RedirectURI *domain.URL `form:"redirect_uri"`
CodeChallengeMethod domain.CodeChallengeMethod `form:"code_challenge_method"`
ResponseType domain.ResponseType `form:"response_type"`
Scope domain.Scopes `form:"scope[],omitempty"`
Scope domain.Scopes `form:"scope[]"`
Authorize string `form:"authorize"`
CodeChallenge string `form:"code_challenge"`
State string `form:"state"`