使用curl将mp4视频上传到Facebook

时间:2018-12-30 14:08:21

标签: facebook curl facebook-graph-api facebook-messenger-bot facebook-chatbot

我在我的facebook网站上有一个简单的bot,我想上传mp4视频,以便根据此文档upload via url将其用于我的bot。

curl -X POST -H "Content-Type: application/json" -d '{
{
  "message":{
    "attachment":{
      "type":"video", 
      "payload":{
        "is_reusable": true,
        "url":"https://cdn-b-east.streamable.com/video/mp4/ll7ht.mp4?token=3Oue4umXi5OZYxVcpgh61w&expires=1546136854"
      }

    }
  }
}
}' "https://graph.facebook.com/v2.6/me/messenger_profile?access_token=MY TOKEN GOES HERE"

不幸的是,当我在bash终端中运行上述代码时,出现以下错误:

{
    "error": {
        "message": "(#100) Requires one of the params: get_started,persistent_menu,target_audience,whitelisted_domains,greeting,account_linking_url,payment_settings,home_url",
        "type": "OAuthException",
        "code": 100,
        "fbtrace_id": "FK6F4slf7IZ"
    }
}

我的代码有什么问题?任何帮助将不胜感激,谢谢

0 个答案:

没有答案