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

c - Mpirun hangs when mpi send and recieve is put in a loop -

python - Apply coupon to a customer's subscription based on non-stripe related actions on the site -

java - Unable to get JDBC connection in Spring application to MySQL -