我想使用Dropbox API 2上传文件。
我可以通过此命令获取用户信息:
curl -X POST https://api.dropboxapi.com/2/users/get_current_account \
--header "Authorization: <access token>" \
--header "Content-Type: application/json" \
--data "null"
但是使用此命令我收到错误Incorrect host for API function "files/upload". You must issue the request to "content.dropboxapi.com".%
curl -X POST https://api.dropboxapi.com/2/files/upload \
--header "Authorization: Bearer <access token>" \
--header "Content-Type: application/octet-stream" \
--header "Dropbox-API-Arg: {\"test\": \"/apitest.txt\", \"mode\": \"overwrite\"}" \
--data-binary @foo.txt
content.dropboxapi.com
仅返回Not Found
json。
如何使用Dropbox API 2上传文件?