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
And that it has a file saved with the following name: folder/bar-bar.jpg.
When I retrieve the file URL, the getFileLocation function returns: https://<MOUNT_PATH>/files/<APP_ID>/folder/bar-bar.jpg. However, this URL causes the parse-server to return an error: HTTP 403 - {"error":"unauthorized"}
The correct URL that should be returned is: https://<MOUNT_PATH>/files/<APP_ID>/folder%2Fbar-bar.jpg
I would like to know how you would like to solve this problem? Since the response may behave differently whendirectAccessistrueorfalse.
Note: I encountered this problem while doing some tests with my PR #117.
The text was updated successfully, but these errors were encountered:
Assuming the following configuration:
And that it has a file saved with the following name:
folder/bar-bar.jpg
.When I retrieve the file URL, the
getFileLocation
function returns:https://<MOUNT_PATH>/files/<APP_ID>/folder/bar-bar.jpg
. However, this URL causes the parse-server to return an error:HTTP 403 - {"error":"unauthorized"}
The correct URL that should be returned is:
https://<MOUNT_PATH>/files/<APP_ID>/folder%2Fbar-bar.jpg
I would like to know how you would like to solve this problem? Since the response may behave differently when
directAccess
istrue
orfalse
.The text was updated successfully, but these errors were encountered: