按鈕範本可讓您傳送結構化訊息,其中包括文字和按鈕。如需完整的執行說明,請參閱按鈕範本。
https://graph.facebook.com/v21.0
/me/messages?access_token=<PAGE_ACCESS_TOKEN>
curl -X POST -H "Content-Type: application/json" -d '{
"recipient":{
"id":"<PSID>"
},
"message":{
"attachment":{
"type":"template",
"payload":{
"template_type":"button",
"text":"What do you want to do next?",
"buttons":[
{
"type":"web_url",
"url":"https://www.messenger.com",
"title":"Visit Messenger"
},
{
...
},
{...}
]
}
}
}
}' "https://graph.facebook.com/v2.6/me/messages?access_token=<PAGE_ACCESS_TOKEN>"
{ "recipient_id": "1254477777772919", "message_id": "AG5Hz2Uq7tuwNEhXfYYKj8mJEM_QPpz5jdCK48PnKAjSdjfipqxqMvK8ma6AC8fplwlqLP_5cgXIbu7I3rBN0P" }
recipient
訊息接收者的描述。所有要求都必須包含 id
、phone_number
或 user_ref
其中之一。
message
Property | Type | Description |
---|---|---|
| Object | An object describing attachments to the message. |
message.attachment
Property | Type | Description |
---|---|---|
| String | Value must be |
| Object | 範本的 |
message.attachment.payload
屬性 | 類型 | 說明 |
---|---|---|
| 字串 | 值必須為 |
| 字串 | UTF-8 編碼文字,由最多 640 個字元所組成。文字會顯示在按鈕上方。 |
| 陣列<button> | 顯示為呼籲字句的 1-3 個按鈕的組合。 |