英文:
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
通过集体智慧和协作来改善编程学习和解决问题的方式。致力于成为全球开发者共同参与的知识库,让每个人都能够通过互相帮助和分享经验来进步。
评论