Emojis Facebook Messenger-Pesisten菜单

时间:2019-06-23 22:00:17

标签: javascript facebook-graph-api bots git-bash

我有一个问题,我试图将表情符号放置在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":}

我需要将表情符号永久保留在菜单中

1 个答案:

答案 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

这样,all命令就在一行中,而您无需执行某些complex escape as seen here