I'm trying to sign in with parse by REST API, always getting response as "Cannot GET /parse/1/login?username=user123&password=parse123") 404 . Below is my code
var auth_data={
"Content-Type": "application/json",
"X-Parse-Revocable-Session": "1",
"X-Parse-Application-Id": "xxxxxxxxxxxxx",
"X-Parse-REST-API-Key": "xxxxxxxxxxxxxxx",
"X-Parse-Master-Key": "xxxxxxxxxx"
}
var res = $http.get('https://subodha.indiearts.in/parse/1/login?username=user123&password=parse123', auth_data);
res.then(function (response) {
$log.info(response);
}).catch(function (error) {
$log.error(error);
});
Am I missing anything??
api.parse.comis your own server?