1.2.0
bdemers
released this
02 Jul 17:20
·
571 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
429
responses, 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> 0
will enable the behavior.
NOTE: Ifokta.client.requestTimeout
is set to30
andokta.client.rateLimit.maxRetries
to0
, an unlimited number of retry attempts will be made in this30
second window.