Microsoft Graph 工具包:"Use a tenant-specific endpoint"
Microsoft Graph Toolkit: "Use a tenant-specific endpoint"
我正在关注这个:https://docs.microsoft.com/en-us/graph/toolkit/get-started/build-a-web-app
不出所料,我的代码非常简单。我有脚本参考、指定了我的客户端 ID 的 mgt-msal2-provider
元素和一个简单的登录 <mgt-login></mgt-login>
.
如果我在 Azure 门户中将我的应用设置为“多租户”,一切正常。但是,我不想将其公开。如何使用上述简单方法指定租户?我找到 ,但我不知道如何指定它,因为我没有使用任何 javascript。
根据 here
提供的文档,请尝试将 authority
属性添加到 mgt-msal2-provider
并将其值设置为 https://login.microsoftonline.com/[your-tenant-id]
。
我正在关注这个:https://docs.microsoft.com/en-us/graph/toolkit/get-started/build-a-web-app
不出所料,我的代码非常简单。我有脚本参考、指定了我的客户端 ID 的 mgt-msal2-provider
元素和一个简单的登录 <mgt-login></mgt-login>
.
如果我在 Azure 门户中将我的应用设置为“多租户”,一切正常。但是,我不想将其公开。如何使用上述简单方法指定租户?我找到
根据 here
提供的文档,请尝试将 authority
属性添加到 mgt-msal2-provider
并将其值设置为 https://login.microsoftonline.com/[your-tenant-id]
。