SubscriptionNotFound:找不到订阅“resourceGroups”

时间:2016-01-28 20:52:54

标签: c# azure azure-resource-manager

我正在尝试关注Resource group authenticate service principal以便能够访问某些资源管理器的内容。但是当我尝试做任何事情时,我收到以下错误:

  

SubscriptionNotFound:找不到订阅“resourceGroups”。

使用文章中的C#代码获取访问令牌,然后调用以下方法:

    var dnsClient = new DnsManagementClient(new Microsoft.Azure.TokenCloudCredentials(result.AccessToken));

    var zone = dnsClient.Zones.CreateOrUpdate("someresourcegroup", "mydomain.com", new Microsoft.Azure.Management.Dns.Models.ZoneCreateOrUpdateParameters {
            IfNoneMatch = "*",
            Zone = new Microsoft.Azure.Management.Dns.Models.Zone {
                Name = "mydomain.com",
                Location = "northeurope"
            }
        });

知道我做错了什么吗?我已经创建了一个服务主体作为贡献者,因此权限应该不是问题吗?

1 个答案:

答案 0 :(得分:1)

错误消息显示订阅' resourceGroups'无法找到,请在创建 TokenCloudCredentials 对象时尝试指定您的订阅ID。

var dnsClient = new DnsManagementClient(new Microsoft.Azure.TokenCloudCredentials("your_subscriptionid", result.AccessToken));

从我这边测试过它。