我们可以通过 Microsoft Graph API 获取 Microsoft Teams 通话数据吗???
可以通过会议邀请中提供的团队会议链接进行通话。
我想知道通话的开始时间和结束时间。
我试过以下查询
https://graph.microsoft.com/v1.0/communications/calls/
https://graph.microsoft.com/v1.0/communications/onlineMeetings
我们可以通过 Microsoft Graph API 获取 Microsoft Teams 通话数据吗???
可以通过会议邀请中提供的团队会议链接进行通话。
我想知道通话的开始时间和结束时间。
我试过以下查询
https://graph.microsoft.com/v1.0/communications/calls/
https://graph.microsoft.com/v1.0/communications/onlineMeetings
您可以使用此 Microsoft Graph API -和Get onlineMeeting
将包含在响应中。startDateTime
endDateTime
GET https://graph.microsoft.com/v1.0/communications/onlineMeetings/?$filter=VideoTeleconferenceId%20eq%20'123456789'
注意权限,它只支持Application
权限,这意味着您只能使用客户端凭据流获取访问令牌,然后使用令牌调用 API。
有关如何获取令牌和调用 API 的更多详细信息,请点击此链接 - Get access without a user。