Why I am not able to download image file form parse server?

Are you using bitnami? Or official example parse server? I dont know much about bitnami. And what have you tried so far? How do configure your parse server?

@uzaysan @Moumouls

I am using Bitnami. I managed to edit "publicServerURL":"http://myadress/parse" via sudo nano /opt/bitnami/parse/config.json and tried to start the parseServer new via sudo /opt/bitnami/ctlscript.sh start parse

But the problem still exists and the download tries to work with localhost when downloading an image:
http://127.0.0.1:1337/parse/files/myappID/d3718e4552e2fb8c34d8ba426dccda96_testimage.png

@uzaysan @SudhirGhagare2810

Alright i figured it out how to do it by using Bitnami on Mac by using Terminal. It is the Problem of not setting publicServerURL to your server ip.

So try this to get it done:

  1. open bitnami connection
  2. open config.json via: sudo vim /opt/bitnami/parse/config.json
    (check this to learn how to operate with vim: https://www.youtube.com/watch?v=bSjVIhJIDUo)
  3. copy and pass: "publicServerURL":"http://PutYourAdressHere/parse"
  4. restart ParseServer via: sudo /opt/bitnami/ctlscript.sh restart

U can check if it worked by checking config.json by e.x. vi /opt/bitnami/parse/config.json

This worked for me and i am able to download Images
`