上传的文件数不正确。必须上传一个文件。 Messenger Platform API发送

时间:2016-10-25 07:55:09

标签: facebook api curl facebook-send-api

我在尝试发送图片时遇到使用信使平台的问题。我在开始之前已经读过这篇文章。

https://developers.facebook.com/docs/messenger-platform/send-api-reference/image-attachment

网址发送效果很好,但文件上传给了我这个错误

{
    "error": {
        "message": "(#100) Incorrect number of files uploaded. Must upload exactly one file.",
        "type": "OAuthException",
        "code": 100,
        "error_subcode": 2018005,
        "fbtrace_id": "CDNEhlKlGrt"
    }
}

这是我的 cURL

curl  \
  -F 'recipient={"id":"1102713306494360"}' \
  -F 'message={"attachment":{"type":"image", "payload":{}}}' \
  -F 'filedata=C:/users/terminal/test.png;type=image/png' \
  "https://graph.facebook.com/v2.6/me/messages?access_token=EAAC3tteq77IBAAnr5zseJ4vTYcMXPFVAHIl...

这是一个答案

enter image description here

我做错了什么?

0 个答案:

没有答案