gpt4 book ai didi

javascript - 将 MSAL.js 用于 NodeJ

转载 作者:行者123 更新时间:2023-12-01 00:20:46 27 4
gpt4 key购买 nike

我想针对 Azure 进行身份验证以声明访问 token 并将其用于图形 API。所以我已经完成了作业并开始阅读本指南

https://learn.microsoft.com/en-us/graph/auth-v2-service

我能够成功进行身份验证。但代码量巨大。这是我自己为身份验证编写的代码:

https://pastebin.com/7sYWyhZJ

如果脚本需要访问当前 session token ,则只需调用 getAuthenticationInfo 函数。由于代码量巨大,我想知道我的代码是否多余或者可能不正确。

经过一些研究,我发现了 MSAL.js,它(我认为)可以为我处理身份验证工作。 MSAL 使用的方法与我上面发布的链接中的指南不同。我从这个简单的 JS 演示代码开始(我只有一个演示帐户,因此凭据不重要)

const msal = require('msal');

async function start() {
const clientId = 'bec52b71-dc94-4577-9f8d-b8536ed0e73d';
const clientSecret = 'OV/NkBIWH7d3G/BGyJQN3vxQA]fT6qK@';
const tenant = '2c1714e1-1030-4da9-af5e-59630d7fe05f';
const scope = 'https://graph.microsoft.com/.default';
const grantType = 'client_credentials';

const msalConfig = {
auth: {
clientId
}
};

const msalInstance = new msal.UserAgentApplication(msalConfig);

const tokenRequest = {
scope,
};

try {
const tokenResponse = await msalInstance.acquireTokenSilent(tokenRequest);
const { accessToken } = tokenResponse;

console.log(accessToken);
} catch (error) {
throw error;
}
}
start();

我想知道应该将登录凭据放在哪里。但是当我运行代码时出现以下错误

ReferenceError: window is not defined

代码似乎尝试访问浏览器存储。但我的代码是在Node环境中运行的。那么,有人会很乐意告诉我如何从基于 MSAL 方法的第一个链接的代码片段传输我的代码吗?

据我了解,MSAL 应该可以满足我的需要,我不需要自己编写身份验证代码,并且可以缩短自己的代码。

提前致谢!

<小时/>

更新

根据 Allen Wus 的回答,我尝试了 ADAL.js,这段代码似乎工作正常

const { AuthenticationContext } = require('adal-node');

const clientId = 'bec52b71-dc94-4577-9f8d-b8536ed0e73d';
const clientSecret = 'OV/NkBIWH7d3G/BGyJQN3vxQA]fT6qK@';
const tenant = '2c1714e1-1030-4da9-af5e-59630d7fe05f';
const authorityHostUrl = 'https://login.windows.net';
const authorityUrl = `${authorityHostUrl}/${tenant}`;
const resource = 'https://graph.microsoft.com';
const context = new AuthenticationContext(authorityUrl);

context.acquireTokenWithClientCredentials(resource, clientId, clientSecret, (error, tokenResponse) => {
if (error) {
throw error;
}

console.log(tokenResponse);
});

我唯一不明白的是resource是什么。请随意添加评论来解释它:)

最佳答案

您收到此错误“ReferenceError:窗口未定义”,因为节点上不存在浏览器。

MSAL.js 设计用于在 Web 浏览器中运行的客户端 JavaScript,例如单页应用程序。也就是说,目前还不支持nodejs。

对于您的控制台应用程序,您可能需要查看MSAL .Net .

或者您可能对 ADAL for nodejs 感兴趣.

关于javascript - 将 MSAL.js 用于 NodeJ,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/59448046/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com