Closed
Description
While trying to deleta a file using rest api with master key i get response msg-->
cannot delete /parse/files/$myappid/$filename.extension
and on my server i get 404 router error
cURL command -------->
curl -X DELETE
-H "X-Parse-Application-Id: $appid"
-H "X-Parse-Master-Key: $masterKey"
https://server-add/parse/files/...profile.png
or
curl -X DELETE
-H "X-Parse-Application-Id: $appid"
-H "X-Parse-Master-Key: $masterKey"
https://server-add/parse/files/$myappid/...profile.png
both statments cause the above mentioned response.
Is there a reliable solution to my problem?