gpt4 book ai didi

javascript - 如何在 Node.js 中使用 Azure Function App 访问 Azure AD

转载 作者:太空宇宙 更新时间:2023-11-04 01:27:47 24 4
gpt4 key购买 nike

我可以使用 Azure Functions 访问 Azure AD 信息吗?我想使用 SendGrid 发送电子邮件并从 AD 获取电子邮件。我从哪里开始做这件事?谢谢

最佳答案

是的,可以。主要步骤是请求访问 token 。然后使用此访问 token call microsoft graph api从 AD 获取电子邮件。

您可以使用client credentials flow获取访问 token 。这是供您引用的代码。

var AuthenticationContext = require('adal-node').AuthenticationContext;

var authorityHostUrl = 'login.microsoftonline.com';

var tenant = '{your_tenant_name}';
var authorityUrl = authorityHostUrl + '/' + tenant;
var resource = 'https://graph.microsoft.com'; // URI that identifies the resource for which the token is valid.

var applicationId = '{your_application_id}';
var clientSecret = '{your_client_secret}';
var context = new AuthenticationContext(authorityUrl);

context.acquireTokenWithClientCredentials(resource, applicationId, clientSecret, function(err, tokenResponse) {
if (err) {
console.log('well that didn\'t work: ' + err.stack);
} else {
console.log(tokenResponse);
}
});

关于javascript - 如何在 Node.js 中使用 Azure Function App 访问 Azure AD,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/56929105/

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