버튼 템플릿

버튼 템플릿은 문자 메시지에 최대 세 개의 버튼을 첨부하여 보냅니다. 이 템플릿은 메시지를 받는 사람에게 질문에 대한 미리 결정된 응답, 취할 행동 등 선택할 옵션을 제공하는 데 유용합니다.

목차

템플릿 페이로드

템플릿 속성의 전체 리스트는 버튼 템플릿 참조를 확인하세요.

"payload": {
  "template_type":"button",
  "text":"<MESSAGE_TEXT>",
  "buttons":[
    <BUTTON_OBJECT>, 
    <BUTTON_OBJECT>, 
    ...
  ]
}

사용 가능한 버튼

사용 가능한 버튼의 전체 리스트를 보려면 버튼을 참조하세요.

요청 예시

전체 요청 정보 및 속성은 버튼 템플릿 참조를 확인하세요.

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"
}