forked from FBDevCLagos/thefacebot-steps
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstep3.txt
38 lines (31 loc) · 1.39 KB
/
step3.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
step 3
Replace <YOUR PSID> with the PSID sent to you from Facebot.
curl -X POST -H "Content-Type: application/json" -d '{"recipient":{"id":"<YOUR PSID>"},"message":{"attachment":{"type":"template","payload":{"template_type":"generic","elements":[{"title":" I love cats! ","image_url":"http://thecatapi.com/api/images/get?format=src&type=gif","subtitle":"","buttons":[{"type":"web_url","url":"https://www.youtube.com/watch?v=4eGQ5VFt7P4","title":"View Website"}]}}}}' "https://graph.facebook.com/v2.6/me/messages?access_token=EAAMs03NJ13wBAFJTOA0ItNR6GaP7DBkNZBJBxa2sl8gSh8faZCMzxZCWLZCgMUSf74NdKI7kVgSAHp4ZBO7vmyaME2B9Ha3K5LcwxzyLGnZBOPzZCjS20TizeGmBBiy01XbaZCIV2rUTX8wZBX0ynRKDFjNamhZAYOuqF4Gwde0NEzpgZDZD"
*** JSON PAYLOAD - Un-minified ***
{
"recipient":{
"id":"1354053731275008"
},
"message":{
"attachment":{
"type":"template",
"payload":{
"template_type":"generic",
"elements":[
{
"title":" I love cats! ",
"image_url":"http://thecatapi.com/api/images/get?format=src&type=gif",
"subtitle":"",
"buttons":[
{
"type":"web_url",
"url":"https://www.youtube.com/watch?v=4eGQ5VFt7P4",
"title":"View Website"
},
]
},
]
}
}
}
}