當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


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。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。