re POST for login ...
I think you want your framework (jquery / cordova) to produce GET, not POST.
In addition, GET will require the following headings and perfumes
-H "X-Parse-Application-Id: AbR" \ -H "X-Parse-REST-API-Key: uI9" \ -H "X-Parse-Revocable-Session: 1" \ -G \ --data-urlencode 'username=e6' \ --data-urlencode 'password=e8'
above from parse, the REST guide applies to what you have in WIRE through the http protocol and in your console log.
So, in your frame code, before any get problems, you will need urlEncode both username and password.
Then add the query line below.
?username=$encodedNameVal&password=$encodedPasswrdVal
to the end of the domain / path you pass to GET ...
api.parse.com/1/login
not familiar with PG, but I don't need to understand 404 U.
source share