使用Microsoft图形API检索聊天成员

时间:2020-06-22 19:17:13

标签: azure-ad-graph-api

跟随此链接:https://docs.microsoft.com/en-us/graph/api/conversationmember-list?view=graph-rest-beta&tabs=csharp

我尝试使用:

GraphServiceClient graphClient = new GraphServiceClient( authProvider );

var members = await graphClient.Me.Chats["{id}"].Members
    .Request()
    .GetAsync();

但是,Visual Studio提供的IUserRequestBuilder不包含聊天的定义。

NuGet软件包3.8.0中使用的Microsoft.Graph版本

Thx

1 个答案:

答案 0 :(得分:1)

我认为聊天端点是beta端点。这意味着您应该在nuget包microsoft.graph.beta中使用 而不是microsoft.graph。