UNPKG

@esri/arcgis-rest-auth

Version:

Authentication helpers for @esri/arcgis-rest-js.

21 lines 780 B
"use strict"; /* Copyright (c) 2017-2018 Environmental Systems Research Institute, Inc. * Apache-2.0 */ Object.defineProperty(exports, "__esModule", { value: true }); exports.generateToken = void 0; var arcgis_rest_request_1 = require("@esri/arcgis-rest-request"); function generateToken(url, requestOptions) { var options = requestOptions; /* istanbul ignore else */ if (typeof window !== "undefined" && window.location && window.location.host) { options.params.referer = window.location.host; } else { options.params.referer = arcgis_rest_request_1.NODEJS_DEFAULT_REFERER_HEADER; } return arcgis_rest_request_1.request(url, options); } exports.generateToken = generateToken; //# sourceMappingURL=generate-token.js.map