You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Thanks for this PR! Could you incorporate an explanation, as described in the issue?
The documentation can be improved quickly by adding a clear example to explain how to format the URL.
For example :
Although the file's URL is 'http:////YOUR.PARSE-SERVER.HERE/parse/files/appId/my_picture.png', you have to remove the '/appId' section from the URL to access the API endpoind.
So the URL must be : 'http:////YOUR.PARSE-SERVER.HERE/parse/files/my_picture.png'
Definitely!
The images are located in the directory of parse which is /files and whenever send DELETE request to the given URL( https://YOUR.PARSE-SERVER.HERE/parse/files/...profile.png) which is an invalid format of the URL. Although, "appId" is required to retrieve the images which needs to be deleted.
Yes, I think a short explanation that appId is required for retrieving but not deleting would be good in the docs. As I read the original issue, that missing info created the difficulty.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Closing #838
What thing being changed:
The documentation for "Deleting the files" contains invalid URL. This can be fixed by changing the URL from https://YOUR.PARSE-SERVER.HERE/parse/files/...profile.png to https://YOUR.PARSE-SERVER.HERE/parse/files/profile.png