Files
2026-07-13 13:34:48 +08:00

8 lines
219 B
Plaintext

# https://developers.facebook.com/docs/instagram-platform/webhooks/examples#message
body = parse_json!(.body)
message = body.entry[0].messaging[0].message
if to_bool!(message.is_echo) {
null
} else {
message.text
}