(state string, opts ...oauth2.AuthCodeOption)
| 117 | } |
| 118 | |
| 119 | func (ja *Config) AuthCodeURL(state string, opts ...oauth2.AuthCodeOption) string { |
| 120 | return ja.cfg.AuthCodeURL(state, opts...) |
| 121 | } |
| 122 | |
| 123 | // Exchange includes the client_assertion signed JWT. |
| 124 | func (ja *Config) Exchange(ctx context.Context, code string, opts ...oauth2.AuthCodeOption) (*oauth2.Token, error) { |