0

我有以下内容:

curl -X POST \ -H "X-Parse-Application-Id: appid" -H "X-Parse-REST-API-Key: restkey" -H "Content-Type: text/plain" -d 'Hello, World ! https://api.parse.com/1/files/hello.txt

我回来了:

{"url":"http://files.parse.com/7680c0e7-b398-4b43-91f0-61b12934c690/08d828ef-1185-4036-b8ab-228764fbeb69-hello.txt","name":"08d828ef-1185- 4036-b8ab-228764fbeb69-hello.txt"}

我应该使用什么文件名?

4

1 回答 1

0

返回的 URL - 您在http://files.parse.com/之后获取所有内容

这涉及以下内容:

curl -X POST \ -H "X-Parse-Application-Id: appid" \ -H "X-Parse-REST-API-Key: reskey" \ -H "Content-Type: application/json" \ -d ' {“名称”:“blisdco”,“图片”:{“名称”:“7680c0e7-b398-4b43-91f0-61b12934c690/08d828ef-1185-4036-b8ab-228764fbeb69-hello.txt”,“__type”:“文件" } }' \ https://api.parse.com/1/classes/CustomerImages

返回的是:

{"createdAt":"2012-06-12T20:16:05.360Z","objectId":"yHLhqMgBAj"}

如果您在 Parse Data Browser 中查看 CustomerImages 表,您将看到条目 - 包括 URL 的文件名部分。

于 2012-06-12T20:36:18.860 回答