我试图将一些图像和声音文件上传到我的解析服务器但是......我完全不知道如何做到这一点。
此处的文档:https://parseplatform.github.io/docs/rest/guide/#files 如何开始上传文件就超出了我的范围。
有一篇博文: http://blog.parse.com/learn/engineering/file-uploading-via-rest-api/
curl -X POST
-H "X-Parse-Application-Id: ${APPLICATION_ID}"
-H "X-Parse-REST-API-Key: ${REST_API_KEY}"
-H "Content-Type: text/plain"
-T 'hello.txt'
https://api.parse.com/1/files/hello.txt
但这对我没有任何意义。文档假定我没有一定程度的理解。
肯定这是一项非常常见的任务吗?