(ctx context.Context, source Oauth2Source, req *http.Request)
| 205 | } |
| 206 | |
| 207 | func (c *Config) Do(ctx context.Context, source Oauth2Source, req *http.Request) (*http.Response, error) { |
| 208 | cli := c.oauthHTTPClient(ctx, source) |
| 209 | return cli.Do(req) |
| 210 | } |
| 211 | |
| 212 | func (c *Config) AuthCodeURL(state string, opts ...oauth2.AuthCodeOption) string { |
| 213 | // No external requests are made when constructing the auth code url. |
nothing calls this directly
no test coverage detected