curl 上载的文件数不正确,只能上载一个文件,Messenger Platform API发送

vngu2lb8  于 2023-03-03  发布在  其他
关注(0)|答案(1)|浏览(131)

我在尝试发送图像时遇到使用messenger平台的问题。我在开始之前已阅读此信息。
https://developers.facebook.com/docs/messenger-platform/send-api-reference/image-attachment

    • URL发送工作正常,但文件上载**出现此错误
{
    "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...

这里有一个答案

我做错了什么?

mbskvtky

mbskvtky1#

-F 'filedata=@E:/desktop/Capture.PNG;type=image/png' \

相关问题