setDefaultRequestOptions
deprecated
FunctionsetDefaultRequestOptions(options: IRequestOptions, hideWarnings?: boolean): voidSets the default options that will be passed in all requests across all @esri/arcgis-rest-js modules.
import { setDefaultRequestOptions } from "@esri/arcgis-rest-request";
setDefaultRequestOptions({
authentication: ArcGISIdentityManager // all requests will use this session by default
})You should never set a default authentication when you are in a server side environment where you may be handling requests for many different authenticated users.
Parameters
| Parameter | Type | Notes |
|---|---|---|
options | IRequestOptions | The default options to pass with every request. Existing default will be overwritten. |
hide | boolean | Silence warnings about setting default |
Returns
void