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":"generic",
"elements":[
{
"title":"Welcome!",
"image_url":"https://petersfancybrownhats.com/company_image.png",
"subtitle":"We have the right hat for everyone.",
"default_action": {
"type": "web_url",
"url": "https://petersfancybrownhats.com/view?item=103",
"messenger_extensions": false,
"webview_height_ratio": "tall",
"fallback_url": "https://petersfancybrownhats.com/"
},
"buttons":[
{
"type":"web_url",
"url":"https://petersfancybrownhats.com",
"title":"View Website"
},{
"type":"postback",
"title":"Start Chatting",
"payload":"DEVELOPER_DEFINED_PAYLOAD"
}
]
}
]
}
}
}
}' "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
중 하나가 포함되어야 합니다.
속성 | 유형 | 설명 |
---|---|---|
| 문자열 | 메시지를 받는 사람의 |
| 문자열 | 선택 사항. 받는 사람의 전화번호(형식: +1(212)555-2368). 이 방법으로 메시지를 보내려면 봇의 고객 매칭 기능 사용이 승인되어야 합니다. |
| 문자열 | 선택 사항.확인란 플러그인의 |
| 개체 | 선택 사항. {"first_name":"John", "last_name":"Doe"} 이름을 지정하면 매칭 성공 확률이 증가합니다. |
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
속성 이름 | 유형 | 설명 |
---|---|---|
| 문자열 | 값은 |
| 배열< | 메시지에서 미디어를 설명하는 요소 개체 하나를 포함하는 배열입니다. 최대 1개의 요소가 지원됩니다. |
| 부울 | 선택 사항. Messenger에서 템플릿 메시지에 대한 네이티브 공유 버튼을 활성화하려면 |
message.attachment.payload.elements
일반 템플릿은 메시지 1개당 최대 10개의 요소를 지원합니다. title
외에 적어도 1개의 속성을 설정해야 합니다.