我使用以下端点已经有一段时间了,它已经停止工作https://graph.microsoft.com/beta/teams/{team-id}/channels/{channel-id}/chatThreads
。
身体 :
{
"rootMessage": {
"body": {
"contentType": 2,
"content": "Hello world"
}
}
回应是:
{
"error": {
"code": "BadRequest",
"message": "Resource not found for the segment 'chatThreads'.",
"innerError": {
"request-id": "8cd24e52-f0eb-4203-bc63-0de4f358c863",
"date": "2020-01-24T10:53:02"
}
}
当我尝试导航到文档页面(此处)时,它给了我一个 404。这个端点发生了什么事吗?确保我的team-id
和channel-id
正确的。
链接到图形资源管理器以重现 -图形资源管理器,预览。
也曾尝试从 beta 更改为 v1.0,但无济于事。