我一直在关注msal.js单页应用程序的教程 这是我一直在尝试的教程的链接:
链接:https://docs.microsoft.com/en-gb/azure/active-directory/develop/tutorial-v2-javascript-spa
我现在想将无需用户访问(链接:https://docs.microsoft.com/en-us/graph/auth-v2-service)的权限合并到此应用程序中。
我试图更改Javascript SPA文件夹中存在的index.html中的网址。
var msalConfig = {
auth: {
clientId: '[my client id]', //This is your client ID
authority: "https://login.microsoftonline.com/common/adminconsent",//This is your tenant info
redirect_uri:"http://localhost:30662/permissions"
},
cache: {
cacheLocation: "localStorage",
storeAuthStateInCookie: true
}
};
但是我仍然没有成功。我可以得到一些建议,向我指出正确的方向吗?谢谢