Parse.Cloud.httpRequest not returning response

1.4k Views Asked by At

I am trying to make a Parse.Cloud.httpRequest call, the job executes successfully but i am not getting any response. If i run the request on a RestClient it executes fine but for some reason it's not working in Parse Cloud Code. What am i doing wrong?

Parse.Cloud.job("Loader", function(request, status) {

var xmlreader = require('cloud/xmlreader.js');
var moment  = require('cloud/moment.js');

var query = new Parse.Query("Codes");
query.each(function(a) {
  var curDateMonth = moment().date();
  var curMonth = moment().add(1, 'months').month();
  var curYear = moment().year();

  Parse.Cloud.httpRequest({
  url: 'https://.....'
}).then(function(httpResponse) {
  console.log(httpResponse.text); 
}, function(httpResponse) {
  console.error('Request failed with response code ' + httpResponse.status);
});

}).then(function() {
    // Set the job's success status
status.success("Saved successfully.");
}, function(error) {
// Set the job's error status
status.error("Uh oh, something went wrong.");
 });
});
1

There are 1 best solutions below

5
On BEST ANSWER

Parse.Cloud.httpRequest() is an asynchronous function call. It doesn't block the thread, so your code keeps running to status.success("Saved successfully."); before you get the result from httpRequest().

Parse.Cloud.httpRequest() returns a Promise now, so you can simply chain them together.

Parse.Cloud.job("Loader", function(request, status) {
    var xmlreader = require('cloud/xmlreader.js');
    var moment  = require('cloud/moment.js');

    var query = new Parse.Query("Codes");
    query.each(function(a) {
        var curDateMonth = moment().date();
        var curMonth = moment().add(1, 'months').month();
        var curYear = moment().year();

        return Parse.Cloud.httpRequest({
            url: 'https://.....'
        });
    }).then(function(httpResponse) {
        console.log(httpResponse.text); 
        status.success("Saved successfully. httpResponse: " + httpResponse.text);
    }, function(error) {
        // Set the job's error status
        status.error("Uh oh, something went wrong.");
    });
});


Edit

each() is something different, so please add the success callback to httpRequest directly.

Parse.Cloud.job("Loader", function(request, status) {
    var allHttpResponseTexts = '';

    var query = new Parse.Query("Codes");
    query.each(function(a) {
        return Parse.Cloud.httpRequest({
            url: 'http://example.com',
            success: function(httpResponse) {
                // Process httpResponse.text here

                allHttpResponseTexts += httpResponse.text.substr(0, 50);
            }
        });
    }).then(function(httpResponse) {
        status.success("Saved successfully. allHttpResponseTexts: " + allHttpResponseTexts);
    }, function(error) {
        status.error("Uh oh, something went wrong. " + error.code + ' - ' + error.message);
    });
});

And the final result is:

Saved successfully. allHttpResponseTexts: <!doctype html> <html> <head> <title>Example D...