(state string, opts ...oauth2.AuthCodeOption)
| 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. |
| 214 | return c.underlying.AuthCodeURL(state, opts...) |
| 215 | } |
| 216 | |
| 217 | func (c *Config) Exchange(ctx context.Context, code string, opts ...oauth2.AuthCodeOption) (*oauth2.Token, error) { |
| 218 | return c.underlying.Exchange(c.wrapClient(ctx, SourceExchange), code, opts...) |
nothing calls this directly
no test coverage detected