HandleAuthorizeRequest handles an authorize endpoint request. To extend the handler's capabilities, the http request is passed along, if further information retrieval is required. If the handler feels that he is not responsible for the authorize request, he must return nil and NOT modify session nor
(ctx context.Context, requester AuthorizeRequester, responder AuthorizeResponder)
| 20 | // requesting an access token (implicit grant) as described by |
| 21 | // Section 4.2.1, or a registered extension value as described by Section 8.4. |
| 22 | HandleAuthorizeEndpointRequest(ctx context.Context, requester AuthorizeRequester, responder AuthorizeResponder) error |
| 23 | } |
| 24 | |
| 25 | type TokenEndpointHandler interface { |
no outgoing calls