通过C#代码403错误使用Microsoft-Graph-Api阅读已创建的在线会议

时间:2020-09-15 13:15:30

标签: c# asp.net asp.net-mvc azure-active-directory microsoft-graph-api

using docs我正在尝试阅读/获取我使用microsoft-graph-api-c#创建的所有会议。 使用代码:

var onlineMeetings = await graphServiceClient.Communications.OnlineMeetings.Request().GetAsync();

获取禁止错误403 或者

var onlineMeetingsMy = await graphServiceClient.Me.OnlineMeetings.Request().GetAsync();           

找不到错误。

1 个答案:

答案 0 :(得分:0)

Get onlineMeeting需要应用程序许可OnlineMeetings.Read.All

因此,您需要在Azure AD应用程序中添加“应用程序”权限(而非“委派”权限)。

enter image description here

别忘了点击为您的租户授予管理员同意

然后,您应该使用Client credentials provider来生成authProvider