Azure 订阅列表使用 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.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
好吧,这些来自 Graph SDK 的订阅是完全不同的事情。要获取 Azure 订阅,您必须使用 Azure SDK。
PS,您不能同时为 graph 和 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