gpt4 book ai didi

java - 身份验证 Azure Java SDK

转载 作者:行者123 更新时间:2023-12-02 23:48:39 24 4
gpt4 key购买 nike

我正在使用 1.0.0-beta4.1 Azure Java SDK。这是我的身份验证代码

    // TODO Auto-generated method stub
String client = "xxxxxxxxxxx";
String tenant = "xxxxxxxxxxx";
String key = "xxxxxxxxxxx";
String subscriptionId = "xxxxxxxxxxx";

ApplicationTokenCredentials credentials = new ApplicationTokenCredentials(client, tenant, key, AzureEnvironment.AZURE);
Azure azure = Azure.authenticate(credentials).withSubscription(subscriptionId);
System.out.println("Listing all resource groups");

如果凭据不正确,代码不会引发任何错误。有没有什么办法可以知道认证是否成功。

最佳答案

根据您的代码,似乎缺少一些必需的方法,其中包括 configure() ,请参见下文。

Azure azure = Azure.configure()  // Initial an Azure.Configurable object
.withLogLevel(HttpLoggingInterceptor.Level.BASIC)
.authenticate(credentials)
.withSubscription(subscriptionId);

请尝试使用上面的代码而不是您的代码。如有任何更新,请随时告诉我。

关于java - 身份验证 Azure Java SDK,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/41766759/

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