fix: client assertions for Okta (#636)
* fix client assertions for Okta * review feedback
This commit is contained in:
parent
1e75773eaa
commit
67688db4c1
2 changed files with 5 additions and 5 deletions
|
@ -72,10 +72,10 @@ type AccessTokenRequest struct {
|
|||
Code string `schema:"code"`
|
||||
RedirectURI string `schema:"redirect_uri"`
|
||||
ClientID string `schema:"client_id"`
|
||||
ClientSecret string `schema:"client_secret"`
|
||||
CodeVerifier string `schema:"code_verifier"`
|
||||
ClientAssertion string `schema:"client_assertion"`
|
||||
ClientAssertionType string `schema:"client_assertion_type"`
|
||||
ClientSecret string `schema:"client_secret,omitempty"`
|
||||
CodeVerifier string `schema:"code_verifier,omitempty"`
|
||||
ClientAssertion string `schema:"client_assertion,omitempty"`
|
||||
ClientAssertionType string `schema:"client_assertion_type,omitempty"`
|
||||
}
|
||||
|
||||
func (a *AccessTokenRequest) GrantType() GrantType {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue