CanSkipClientAuth indicates if client authentication can be skipped. By default it MUST be false, unless you are implementing extension grant type, which allows unauthenticated client. CanSkipClientAuth must be called before HandleTokenEndpointRequest to decide, if AccessRequester will contain authe
(ctx context.Context, requester AccessRequester)
| 35 | // implementing extension grant type, which allows unauthenticated client. CanSkipClientAuth must be called |
| 36 | // before HandleTokenEndpointRequest to decide, if AccessRequester will contain authenticated client. |
| 37 | CanSkipClientAuth(ctx context.Context, requester AccessRequester) bool |
| 38 | |
| 39 | // CanHandleRequest indicates, if TokenEndpointHandler can handle this request or not. If true, |
| 40 | // HandleTokenEndpointRequest can be called. |
no outgoing calls