当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


JavaScript ArcGIS IdentityManager.setOAuthRedirectionHandler用法及代码示例


基本信息

以下是所在类或对象的基本信息。

AMD: require(["esri/identity/IdentityManager"], (esriId) => { /* code goes here */ });

ESM: import esriId from "@arcgis/core/identity/IdentityManager";

类: esri/identity/IdentityManager

自从:用于 JavaScript 4.0 的 ArcGIS API

用法说明

IdentityManager.setOAuthRedirectionHandler函数(或属性)的定义如下:

setOAuthRedirectionHandler (handlerFunction)


一旦用户成功登录,他们将被重定向回应用程序。如果应用程序需要在页面重定向之前执行自定义逻辑,请使用此方法。 IdentityManager 使用包含重定向属性的对象调用自定义处理程序函数。

参数:

类型说明
handlerFunction handlerCallback

调用时,传递给setOAuthRedirectionHandler 的回调接收一个包含重定向属性的对象。

例子:

require(["esri/identity/IdentityManager"],
function(esriId)
{
 esriId.setOAuthRedirectionHandler(function(info)
  {
   // Execute custom logic then perform redirect
   window.location = info.authorizeUrl + "?" + ioquery.objectToQuery(info.authorizeParams);
  });
});

相关用法


注:本文由纯净天空筛选整理自arcgis.com大神的英文原创作品 IdentityManager.setOAuthRedirectionHandler。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。