Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 8447417
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 10, 20262026-06-10T10:10:34+00:00 2026-06-10T10:10:34+00:00

The following code receives a post request (using the express module), creates a new

  • 0

The following code receives a post request (using the express module), creates a new post request and passes it to another handler:

app.post('/commit', function (req, res) {
  ....
  var payload = {
    ....
  };

  request({
    method:'POST',
    body:"payload=" + escape(JSON.stringify(payload)),
    headers:{ '...' },
    url:publicUrl
  }, function (err, res, body) {
    if (err) {
      return console.error(err);
    }
    console.log(res.statusCode);
  });

    res.writeHead(200, { 'Content-Type': 'application/json' });
    var obj = {};
    obj['Status'] ="don't know how to get the access code";
    res.end( JSON.stringify( obj ) );
},

Now I want to be able to add the actual status code to the json, but I don’t know how to access it since I’m sort of in a different scope, right?

Thanks,
Li

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-10T10:10:35+00:00Added an answer on June 10, 2026 at 10:10 am

    My first thought would be to try something like this (notice how I moved the code that builds the response to be inside the callback from the POST request):

    app.post('/commit', function (req, res) {
      ....
      var payload = {
        ....
      };
    
      request({
        method:'POST',
        body:"payload=" + escape(JSON.stringify(payload)),
        headers:{ '...' },
        url:publicUrl
      }, function (err, postRes, body) {
        if (err) {
          res.writeHead(500, { 'Content-Type': 'application/json' });
          var obj = {};
          obj['Status'] = 'something went wrong: ' + err;
          res.end( JSON.stringify( obj ) );
        }
        else {
          res.writeHead(200, { 'Content-Type': 'application/json' });
          var obj = {};
          obj['Status'] = postRes.statusCode;
          res.end( JSON.stringify( obj ) );
        }
      });
    
    },
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

The following code is from a details page that receives a querystring from another
I am using the following code to do a HTTP Post. This works fine
Why I am not able to send POST request using the following command and
I am trying to post comment on wall using following code after successful login.
So I'm using the following php code to set variables that are received from
I have the following code: $.ajax({ type: POST, url: url, data: sendable, dataType: json,
I have the following code, using Crockford's json2 to parse the object into json
I'm using Google App Engine, Jquery and Django. I want POST data to be
I am using the following code in my MailChimp Controller to submit simple newsletter
When my app starts up, I post a login request to a web service

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.