Office / Outlook Web Add in with Graph API - Connect to Graph API without pop up to sign in(Office/Outlook Web Add-with Graph API-连接到Graph API,无需弹出登录窗口)
本文介绍了Office/Outlook Web Add-with Graph API-连接到Graph API,无需弹出登录窗口的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我的外接程序已经在Azure上设置了应用程序身份验证,但我在使用javascript编写此代码以获取身份验证令牌然后调用Graph API时遇到了问题,而不需要用户通过出现的弹出模式登录(我之前编写它是为了让弹出模式出现,用户登录,所有Graph API调用都可以正常工作,但是用户不需要登录的情况下会流畅得多,也会有更好的用户体验)。下面包括以前的方式) const msalConfig = {
auth: {
clientId: "cID", // Client Id of the registered application
redirectUri: "https://localhost:111", // debug
}
};
const graphScopes = ["user.read", "user.readWrite", "mail.send", "mail.send.shared", "mail.readWrite"/*, "files.readWrite.All"*/]; // An array of graph scopes
const msalApplication = new Msal.UserAgentApplication(msalConfig);
const options = new MicrosoftGraph.MSALAuthenticationProviderOptions(graphScopes);
const authProvider = new MicrosoftGraph.ImplicitMSALAuthenticationProvider(msalApplication, options);
const options2 = {
authProvider // An instance created from previous step
};
const Client = MicrosoftGraph.Client;
var client = Client.initWithMiddleware(options2);
我正在查看一些Microsoft文档,他们说为了在不需要用户登录的情况下工作,我要在帖子中包含客户端机密以获得身份验证令牌?我是否查看了错误的文档,因为出于安全原因,我肯定不能在JS中包含这些文档?
参见下面的文档IM
https://docs.microsoft.com/en-us/graph/auth-v2-user
任何见解都非常感谢,谢谢!
MSAL1/h3>我将使用推荐答案登录用户,并使用授权代码流调用Microsoft Graph。您构建的SPA使用Microsoft Authentication Library(MSAL)for JavaScript v2.0。
注意:MSAL.js 2.0通过支持浏览器中的授权码流而不是隐式授权流,改进了旧版MSAL.js 1.0。
这篇关于Office/Outlook Web Add-with Graph API-连接到Graph API,无需弹出登录窗口的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
沃梦达教程
本文标题为:Office/Outlook Web Add-with Graph API-连接到Graph API,无需弹出登录窗口
基础教程推荐
猜你喜欢
- Karma-Jasmine:如何正确监视 Modal? 2022-01-01
- 当用户滚动离开时如何暂停 youtube 嵌入 2022-01-01
- 在for循环中使用setTimeout 2022-01-01
- 响应更改 div 大小保持纵横比 2022-01-01
- 动态更新多个选择框 2022-01-01
- 在 JS 中获取客户端时区(不是 GMT 偏移量) 2022-01-01
- 我什么时候应该在导入时使用方括号 2022-01-01
- 有没有办法使用OpenLayers更改OpenStreetMap中某些要素 2022-09-06
- 悬停时滑动输入并停留几秒钟 2022-01-01
- 角度Apollo设置WatchQuery结果为可用变量 2022-01-01