1.2.0
·
711 commits
to master
since this release
-
Add new RequestBuilder interface to allow GET, POST, PUT, and DELETE, see:
client.http() -
Updated retry logic to better handle
429responses, configurationokta.client.requestTimeout: number of seconds to wait to retry multiple requests (defaults to 0)okta.client.rateLimit.maxRetries: Max number of retry attempts to make before failing (defaults to 4)
Retry logic can be disabled by setting both values to
0. Any value> 0will enable the behavior.
NOTE: Ifokta.client.requestTimeoutis set to30andokta.client.rateLimit.maxRetriesto0, an unlimited number of retry attempts will be made in this30second window.