AuthorizationCodeHandler is an implementation of [OAuthHandler] that uses the authorization code flow to obtain access tokens.
| 107 | // AuthorizationCodeHandler is an implementation of [OAuthHandler] that uses |
| 108 | // the authorization code flow to obtain access tokens. |
| 109 | type AuthorizationCodeHandler struct { |
| 110 | config *AuthorizationCodeHandlerConfig |
| 111 | |
| 112 | // tokenSource is the token source to use for authorization. |
| 113 | tokenSource oauth2.TokenSource |
| 114 | } |
| 115 | |
| 116 | var _ OAuthHandler = (*AuthorizationCodeHandler)(nil) |
| 117 |
nothing calls this directly
no outgoing calls
no test coverage detected