从 webhook 编辑不和谐消息

Edit discord message from webhook

我想用 webhook(我正在使用)发送消息,然后编辑该消息。您可以通过 webhooks 编辑消息,但您需要消息 ID。通过 webhook 检索消息的唯一方法需要消息 ID。这个系统应该如何运作?我一定是漏掉了什么。

您需要将 wait 查询字符串参数设置为 true 否则 discord 只会回复 204 No Content。 documentation.

中列出了所有查询字符串参数

所以基本上只需添加一个“?wait=true”到您的 discord webhook url,您应该会收到带有消息 ID(以及更多)的响应。然后您可以使用该 ID Lookup/Edit/Delete 该消息。