如何在Parse中删除文件?我尝试通过REST API删除它们,但它不起作用。
我总是收到这个错误:
"Cannot DELETE /parse/files/appName/e462b99d0e7ed9b98d837493d95c102d_profilePicture.jpg\n"
我在Ubuntu 16.04系统上使用Parse,Parse版本是2.2.23。
答案 0 :(得分:2)
此解决方案适用于解析服务器。 parse.com关闭了 首先从链接中删除“appName”,然后使用此代码
curl -X DELETE
-H "X-Parse-Application-Id: $appid"
-H "X-Parse-Master-Key: $masterKey"
http://myAPP.herokuapp.com/parse/files/e462b99d0e7ed9b98d837493d95c102d_profilePicture.jpg
这是源链接 https://github.com/ParsePlatform/parse-server/issues/1411