跟随此链接: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
答案 0 :(得分:1)
我认为聊天端点是beta端点。这意味着您应该在nuget包microsoft.graph.beta中使用 而不是microsoft.graph。