TokenSource returns a token source to be used for outgoing requests. Returned token source might be nil. In that case, the transport will not add any authorization headers to the request.
(context.Context)
| 26 | // Returned token source might be nil. In that case, the transport will not |
| 27 | // add any authorization headers to the request. |
| 28 | TokenSource(context.Context) (oauth2.TokenSource, error) |
| 29 | |
| 30 | // Authorize is called when an HTTP request results in an error that may |
| 31 | // be addressed by the authorization flow (currently 401 Unauthorized and 403 Forbidden). |
no outgoing calls
no test coverage detected