提问人:opike 提问时间:9/25/2023 更新时间:9/25/2023 访问量:17
使用 ArcGIS js SDK 在节点 js 脚本中添加 Oauth2
Add Oauth2 in a node js script using the ArcGIS js SDK
问:
我有以下节点脚本,可以成功访问 ArcGIS Online 中的公共 web 地图:
import WebMap from '@arcgis/core/WebMap.js';
import esriConfig from "@arcgis/core/config.js";
esriConfig.request.useIdentity = false;
const webmap = new WebMap({
portalItem: { id: "3d52817a120b477db912add2e62ef9b6" }
});
webmap.load()
.then(() => {
console.log(webmap.portalItem.description);
})
.catch((error) => {
console.error(error);
});
我想将 Oauth2 添加到其中,以便我可以访问受限制的内容,尽管我不确定服务器端节点脚本是否可以做到这一点。
答: 暂无答案
评论