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
I'm using the docker-compose-le.yml file to run Parse with Letsencrypt, following the example in the wiki. When I browse to https://my-domain/parse, I see the following JSON in response: {"error":"unauthorized"}. Browsing to https://my-domain properly shows the default nginx greeting "I dream of being a web site.".
Is this an indication of something obvious I've done wrong?
Using Docker 1.10.3 on Ubuntu 16.04.1 x64
The text was updated successfully, but these errors were encountered:
it is the correct behavior, you must authenticate your query with headers:
X-Parse-Application-Id
X-Parse-Master-Key
Try using postman or curl to make a proper request: curl -X POST -H "X-Parse-Application-Id: MyAppID" -H "X-Parse-Master-Key: MyMasterKey" -H "Content-Type: application/json" -d '{}' "https://my-domain/parse/functions/hello"
I'm using the docker-compose-le.yml file to run Parse with Letsencrypt, following the example in the wiki. When I browse to https://my-domain/parse, I see the following JSON in response: {"error":"unauthorized"}. Browsing to https://my-domain properly shows the default nginx greeting "I dream of being a web site.".
Is this an indication of something obvious I've done wrong?
Using Docker 1.10.3 on Ubuntu 16.04.1 x64
The text was updated successfully, but these errors were encountered: