gpt4 book ai didi

azure - 使用 MSAL 库 java 获取 Azure 应用服务主体

转载 作者:行者123 更新时间:2023-12-02 07:01:55 25 4
gpt4 key购买 nike

如何获取在 Azure 中注册的应用程序的 Azure 服务主体 ID,并使用 MSAL 库 Java 验证添加到该应用程序的角色。

最佳答案

您可以生成服务主体

ApplicationTokenCredentials credentials = new ApplicationTokenCredentials(client,
tenant,
key,
AzureEnvironment.AZURE);

Azure.Authenticated azureAuthClient = Azure.configure().authenticate(credentials);
String clusterId = "xxxxxxx";
ServicePrincipal servicePrincipal =
azureAuthClient.servicePrincipals()
.define(clusterId)
.withNewApplication("http://easycreate.azure.com/" + clusterId)
.definePasswordCredential("sppass")
.withPasswordValue("StrongPass!12")
.attach()
.create();

关于azure - 使用 MSAL 库 java 获取 Azure 应用服务主体,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/62508292/

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