message_edits
Webhook Event ReferenceThis event will be sent to your webhook when a user edits a previously-sent message.
You can subscribe to this callback by selecting the message_edits
field when setting up your webhook.
{ "sender": { "id": "<PSID>" }, "recipient": { "id": "<PAGE_ID>" }, "timestamp": 1458668856463, "message_edit": { "mid": "<MESSAGE_ID>", "text": "<TEXT>", "num_edit": "<INT>", } }
sender
คุณสมบัติ | ประเภท | คำอธิบาย |
---|---|---|
| สตริง | PSID ของผู้ใช้ที่ทริกเกอร์เหตุการณ์ Webhook |
| สตริง | user_ref ของผู้ใช้ที่ทริกเกอร์เหตุการณ์ Webhook คุณสมบัตินี้ใช้งานได้สำหรับเหตุการณ์ Webhook จากปลั๊กอินแชทเท่านั้น |
recipient
คุณสมบัติ | ประเภท | คำอธิบาย |
---|---|---|
| สตริง | ID เพจของคุณ |
message_edit
Property | Type | Description |
---|---|---|
| string | The Message ID of the message that the user edited. |
| string | The new message content, after the user's edit. |
| integer | The number of times the user has edited the message. (The user cannot edit a message more than five times. This constraint is on the Messenger client side.) |