Azure python 代码报错:AADSTS500011 问题解决方法

error:

今天 python sdk 登录到Azure 时常遇到”azure.core.exceptions.ClientAuthenticationError: Authentication failed: AADSTS500011 The resource principal named https://management.azure.com was not found“这个错误。

参照如下即可解决

compute_client = ComputeManagementClient(
    credential=credential,
    subscription_id=Subscription_Id,
    base_url='https://management.chinacloudapi.cn',
    credential_scopes=["https://management.chinacloudapi.cn/.default"]
)

原因:

Azure python 代码报错:AADSTS500011 问题解决方法_第1张图片

Azure python 代码报错:AADSTS500011 问题解决方法_第2张图片

你可能感兴趣的:(python)