-
-
Notifications
You must be signed in to change notification settings - Fork 21
Sending reply buttons
Filippo Romani edited this page Sep 13, 2024
·
2 revisions
Send reply button only displays three reply buttons, if it exceeds three reply buttons, it will raise an error and your message will not be sent.
>>> messenger.send_reply_button(
recipient_id="255757xxxxxx",
button={
"type": "button",
"body": {
"text": "This is a test button"
},
"action": {
"buttons": [
{
"type": "reply",
"reply": {
"id": "b1",
"title": "This is button 1"
}
},
{
"type": "reply",
"reply": {
"id": "b2",
"title": "this is button 2"
}
}
]
}
},
sender=0,
)
If you find any issue in the docs, please open an issue/pr and report it