I'm using Node.js to automate some of maintainance for my Parse app, and I'm having problems with requesting all of the User account data. I'm able to request the information when using the REST API but not when using the Javascript SDK.
Here is the code:
var Parse = require('parse').Parse;
Parse.initialize(PARSE_APP_ID, PARSE_JAVASCRIPT_KEY, PARSE_MASTER_KEY);
var query = new Parse.Query(Parse.User);
query.find({
success: function (results) {
console.log(results);
},
error: function (error) {
console.log(error);
}
});