Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
如何使用curl中的graph api请求将文件上传到facebook
我正在提出此请求,但收到错误:
curl https://graph.facebook.com/<id>/photos -F "source=@me.jpg" -d "message=Me" -v ERR: Only One Http Request can be Selected
您不能在同一命令行中混合使用 -F 和 -d 选项。如果您想要一个多部分表单(我相信您会这样做),那么您需要使用 -F 添加所有部分,包括“message=Me”部分。