0

i’m have a question, i trying put emojis in a persistent menu for facebook Messenger someone knows how to upload them by code?

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":}

I need put emojis in menu persistent

Stephen Kennedy
  • 20,585
  • 22
  • 95
  • 108

1 Answers1

0

You have an example in "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"

But if you are doing that in a git bash session on Windows, I would recommend as in here:

That way, the all command is in one line, and you don't need to do some complex escape as seen here.

VonC
  • 1,262,500
  • 529
  • 4,410
  • 5,250