We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
When using JWT authentication, the client assertions in the configuration are static, and won't be updated after the token expires in
func (a *JWTAuth) Authorize ... { .... accessToken, nonce, privateKey, err := getAccessTokenForPrivateKey(a.httpClient, a.orgURL, a.clientAssertion ...) .... }
compare that to:
func (a *PrivateKeyAuth) Authorize { ... clientAssertion, err := createClientAssertion(a.orgURL, a.clientId, a.privateKeySigner) ... }
i think allowing for the ClientAssertion to be a callback rather than a string, in JWTAuthConfig, would solve the issue
okta authentication
No response
The text was updated successfully, but these errors were encountered:
This issue has been marked stale because there has been no activity within the last 14 days. To keep this issue active, remove the stale label.
stale
Sorry, something went wrong.
No branches or pull requests
Describe the feature request?
When using JWT authentication, the client assertions in the configuration are static, and won't be updated after the token expires
in
compare that to:
i think allowing for the ClientAssertion to be a callback rather than a string, in JWTAuthConfig, would solve the issue
New or Affected Resource(s)
okta authentication
Provide a documentation link
No response
Additional Information?
No response
The text was updated successfully, but these errors were encountered: