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

Popular posts from this blog

python - how we can use ajax() in views.py in django? -

matlab - Using loops to get multiple values into a cell -

python - Sequence Pattern recognition with Pybrain -