我有一个问题,我试图将表情符号放置在Facebook Messenger的持久菜单中,有人知道如何通过代码上传它们?
curl -X POST -H "Content-Type: application/json" -d '{
"persistent_menu":[
{
"locale":"default",
"composer_input_disabled": true,
"call_to_actions":[
{
"title":"Monkeys Bar Productos ?",
"type":"nested",
"call_to_actions":}
我需要将表情符号永久保留在菜单中
答案 0 :(得分:0)
您在“ How to add a persistent menu to Facebook messenger bot ”中有个例子
curl -X POST -H "Content-Type: application/json" -d '{
"persistent_menu":[
...
} "https://graph.facebook.com/v2.6/me/messenger_profile?access_token=YOUR_ACCESS_TOKEN_HERE"
但是,如果您是在Windows上的git bash会话中执行此操作,则建议使用as in here:
\n
, not \r\n
设置为newlines)curl ... -d @json.txt
这样,all命令就在一行中,而您无需执行某些complex escape as seen here。