gpt4 book ai didi

Python azure-identity ClientSecretCredential

转载 作者:行者123 更新时间:2023-12-02 22:54:29 25 4
gpt4 key购买 nike

我正在尝试通过 azure-identity python 包获取访问 token 以访问 Azure 服务。我在 Azure AD 中完成了应用程序注册,并获得了以下 C# 代码,它按预期工作:

private static async Task<string> GetAccessToken(string aasUrl)
{
var tenantId = "<>";
var appId = "<>";
var appSecret = <>;
string authorityUrl = $"https://login.microsoftonline.com/{tenantId}";

var authContext = new AuthenticationContext(authorityUrl);

// Config for OAuth client credentials
var clientCred = new ClientCredential(appId, appSecret);
AuthenticationResult authenticationResult = await authContext.AcquireTokenAsync(aasUrl, clientCred);

//get access token
return authenticationResult.AccessToken;
}

但是当我尝试在 python 中重做 C# 时,我无法让 get_token(scode:str) 工作......我根本不知道要传递给 get_token 函数的范围。

from azure.identity import ClientSecretCredential

authority = 'https://login.microsoftonline.com'

credential = ClientSecretCredential(tenant_id, client_id, client_secret, authority=authority)

token = credential.get_token(scope:str) #scope?

当我使用 .net Microsoft.IdentityModel.Clients.ActiveDirectory 库时,我不必考虑范围。

最佳答案

When I use the .net Microsoft.IdentityModel.Clients.ActiveDirectory library I don’t have to think about scope.

其实你也想过。当您通过.net sdk使用下面的代码时,有一个aasUrl,这相当于您需要在python sdk中指定。

AuthenticationResult authenticationResult = await authContext.AcquireTokenAsync(aasUrl, clientCred);

对于 Microsoft.IdentityModel.Clients.ActiveDirectory,方法 AcquireTokenAsync 本质上使用 Azure AD client credential flow v1.0 endpoint获取token,所以该参数命名为 resource ,即此方法中的 resource 参数 AcquireTokenAsync(String, ClientCredential) .

在 python sdk azure.identity 中,此方法 get_token 本质上使用 Azure AD client credential flow v2.0 endpoint为了获取 token ,当v1.0端点迁移到v2.0时,有一些变化,其中之一是资源,它更改为scope ,请参阅此 doc 。使用scope时,需要指定想要访问的权限,也可以使用 /.default ,那么默认情况下将请求添加到应用程序的所有权限。

因此,在您的情况下,您只需使用 scope 作为 aasUrl/.default,例如https://management.azure.com/.default,这取决于你自己。

token = credential.get_token("https://management.azure.com/.default")

也用我这边的代码进行了测试,效果很好。

enter image description here

关于Python azure-identity ClientSecretCredential,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/66398527/

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