javascript - Parse: Grab photo during background job -
I am uploading images to parse it through iOS, similar to this tutorial and catch them in parse Wish cloud code background job is parsing success now, when I run this function, then no result is found. Any ideas?
Parse.Cloud.job ("photoPing", function (request, status) {var query = new parse .Query ("UserPhoto"); query.each (function (userphoto) {Console .log (userphoto);}) then (function () {status.success ("Win");}, function (error) {status.error ("Womp");});}); My ACL controls were not set publicly, now all are good.
Comments
Post a Comment