-
Notifications
You must be signed in to change notification settings - Fork 0
/
menu.txt
36 lines (31 loc) · 1.28 KB
/
menu.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
//SETTING PERSISTENT MENU
curl -X POST -H "Content-Type: application/json" -d '{
"setting_type" : "call_to_actions",
"thread_state" : "existing_thread",
"call_to_actions":[
{
"type":"postback",
"title":"Move Menu",
"payload":"MOVE_PAYLOAD"
},
{
"type":"web_url",
"title":"Contact Us",
"url":"https://nsano.com/"
}
]
}' "https://graph.facebook.com/v2.6/me/thread_settings?access_token=EAAGWQHoCpngBAJdPkqKx98ZACDKD8F5GBMCvJmwCVX2xl1XGfZAgovMSIfo8pFGrotTUIfLL6GfNAmEr2sdYc8Yu8huN5uMF8Y5DJkhsbEZC6ZAyq8dkteUyGiBXJAZC85i1ZCLmmfpNT6ZC8i3sZAtwHMbeE1BHuWoOIaxX3iqtsgZDZD"
//ADDING GET STARTED BUTTON
curl -X POST -H "Content-Type: application/json" -d '{
"setting_type":"call_to_actions",
"thread_state":"new_thread",
"call_to_actions":[
{
"payload":"Greeting"
}
]
}' "https://graph.facebook.com/v2.6/me/thread_settings?access_token=EAAGWQHoCpngBAJdPkqKx98ZACDKD8F5GBMCvJmwCVX2xl1XGfZAgovMSIfo8pFGrotTUIfLL6GfNAmEr2sdYc8Yu8huN5uMF8Y5DJkhsbEZC6ZAyq8dkteUyGiBXJAZC85i1ZCLmmfpNT6ZC8i3sZAtwHMbeE1BHuWoOIaxX3iqtsgZDZD"
curl -X DELETE -H "Content-Type: application/json" -d '{
"setting_type":"call_to_actions",
"thread_state":"existing_thread"
}' "https://graph.facebook.com/v2.6/me/thread_settings?access_token=PAGE_ACCESS_TOKEN"