OptionalauthorizationIf you need to send custom parameters to the Authorization Server, make sure to use the original parameter name.
Optionalaudience?: stringThe audience that was used in the authentication request
Optionalredirect_uri?: stringThere's no actual redirect when getting a token silently,
but, according to the spec, a redirect_uri param is required.
Auth0 uses this parameter to validate that the current origin
matches the redirect_uri origin when sending the response.
It must be whitelisted in the "Allowed Web Origins" in your
Auth0 Application's settings.
Optionalscope?: stringThe scope that was used in the authentication request
OptionalcacheWhen off, ignores the cache and always sends a
request to Auth0.
When cache-only, only reads from the cache and never sends a request to Auth0.
Defaults to on, where it both reads from the cache and sends a request to Auth0 as needed.
OptionaldetailedIf true, the full response from the /oauth/token endpoint (or the cache, if the cache was used) is returned
(minus refresh_token if one was issued). Otherwise, just the access token is returned.
The default is false.
OptionaltimeoutA maximum number of seconds to wait before declaring the background /authorize call as failed for timeout Defaults to 60s.
Parameters that will be sent back to Auth0 as part of a request.