Azure订阅列表使用MS Graph SDK返回空结果。

huangapple go评论82阅读模式
英文:

Azure subscriptions list returns empty result with MS Graph SDK

问题

由于某种原因,SDK没有返回订阅,尽管我有一个订阅。我已经在我的应用注册中添加了Subscription.Read.All权限。

client := msgraphsdk.NewGraphServiceClient(adapter)
res, err := client.Subscriptions().Get(nil)

我使用相同的代码获取组织机构,它正常工作。我使用OAuth2令牌进行SDK身份验证。

英文:

For some reason sdk doesn't return subscriptions although I have one. I have added Subscription.Read.All permission to my app registration.

client := msgraphsdk.NewGraphServiceClient(adapter)
res, err := client.Subscriptions().Get(nil)

I use the same code to get Organizations and it works fine. I use oauth2 token for sdk authentication.

答案1

得分: 0

好的,我会为你翻译以下内容:

好的,Graph SDK 中的这些订阅是完全不同的东西。要获取 Azure 订阅,你必须使用 Azure SDK。

附注:你不能同时为 Graph SDK 和 Azure SDK 发行 OAuth2 令牌。

英文:

Ok, these subscriptions from Graph SDK are a completely different thing. To get Azure subscriptions you must use Azure SDK.

P.S. and you can't issue oauth2 token both for graph and azure sdk

huangapple
  • 本文由 发表于 2022年3月3日 22:19:58
  • 转载请务必保留本文链接:https://go.coder-hub.com/71338692.html
匿名

发表评论

匿名网友

:?: :razz: :sad: :evil: :!: :smile: :oops: :grin: :eek: :shock: :???: :cool: :lol: :mad: :twisted: :roll: :wink: :idea: :arrow: :neutral: :cry: :mrgreen:

确定