1

我已经搜索了文档,似乎找不到解决方案。我在 Microsoft Teams 频道中创建了一个 webhook,并使用本指南将消息发布到频道中:

https://docs.microsoft.com/en-us/microsoftteams/platform/webhooks-and-connectors/how-to/connectors-using#post-a-message-to-the-webhook-using-curl

这很好用,但我还想发出另一个 cURL 请求来更新消息。这甚至可能吗?我有哪些选择?

我认为“correlationId”字段将是为我的消息创建唯一标识符的解决方案,但它似乎并没有那样工作:

https://docs.microsoft.com/en-us/outlook/actionable-messages/message-card-reference#card-fields

4

1 回答 1

1

没有直接的方法来更新 webhook 发送的消息,您可以尝试使用List Channel Messages API获取消息列表,然后记下要更新的特定消息的 id,然后使用更新消息Graph API更新。

于 2021-01-05T11:06:42.390 回答