Join the social network of Tech Nerds, increase skill rank, get work, manage projects...
 
  • How to make an http POST request in node.js

    • 1
    • 0
    • 0
    • 0
    • 0
    • 0
    • 0
    • 0
    • 704
    Comment on it

    I have a situation in which I have to make an post  http request to another server and get the http request data(If it exist) and then on the basis of data do further calculation. I have to also put the check that if there is any delay on the response then abort the http request and throw the error.So I can explaining this by giving a simple example step by step.

     

    Step 1:  First install http module by which we will send http request.
     

    1. npm install --save http

     

    Step 2: Then we will require the module where we want to use.

     

    1. var http = require('http');

     

    Step 3: Now we will write the code to do http request in node.js. Start with routes.js
     

    1. router.post('/saveMeeting', meetingController.saveMeeting);
    2.  
    3. router.post('/meetingData', meetingController.calendarId);

     

    Step 4: Now we write the code for making http post request.

     

    1. //Check meeting response
    2. module.exports.saveMeeting = function(request, response){
    3. var meetingData=request.body;
    4. getMeetingRequestData(meetingData,function(err,meetingDatacallback){
    5. if(err) throw err;
    6. else{
    7. if(meetingDatacallback==null || meetingDatacallback=='' || meetingDatacallback=='undefined'){
    8. responseResult='fail';
    9. }else{
    10. responseResult='Success';
    11. }
    12. response.json({
    13. Success: true,
    14. message: 'Meeting Response',
    15. meetingDataResponse:responseResult
    16. });
    17. }
    18. });
    19. }
    20.  
    21. //Function to send the http request and send the response back where we want.
    22.  
    23. function getMeetingRequestData(meetingData,callback) {
    24. data=meetingData;
    25. var requestPerameter={
    26. host : 'localhost',
    27. port : 7000,
    28. path : '/' +meetingData.calendarId, // the rest of the url with parameters if needed
    29. method : 'POST' // do POST
    30. }
    31. var requestData = http.request(requestPerameter, function(res) {
    32. // explicitly treat incoming data as utf8 (avoids issues with multi-byte chars)
    33. res.setEncoding('utf8');
    34. // incrementally capture the incoming response body
    35. var appendStringData = '';
    36. res.on('data', function(chunk) {
    37. appendStringData += chunk;
    38. });
    39. // do whatever we want with the response once it's done
    40. res.on('end', function() {
    41. try {
    42. parseData=appendStringData;
    43. } catch (err) {
    44. console.error('Unable to parse response as JSON', err);
    45. return callback(err,null);
    46. }
    47. // pass the relevant data back to the callback
    48. callback(null,parseData);
    49. });
    50.  
    51. }).on('error', function(err) {
    52. // handle errors with the request itself
    53. console.error('Error with the request:', err.message);
    54. callback(err,null);
    55. });
    56. //After 3 sec the request will automatically terminate
    57. requestData.setTimeout(0, function() {
    58. console.log('Request timeout');
    59. requestData.abort();
    60. });
    61. requestData.on('error', function(err) {
    62. console.error('Request timeout', err);
    63. return callback(err,null);
    64. });
    65. requestData.end();
    66. }

     

    Here In the above code we can see first it will go the saveMeeting function then we have call a another function getMeetingRequestData function and pass callback in this function. In getMeetingRequestData function we have send calendarId in post method and it will go to the another server and get data from there we will receive data data in chunk so we will append our data in string and so now we have the data .Now we will do any operation with the data.

     

    So by the above example and explanation it is clear that "How to make an http POST request in node.js".

     

     

 0 Comment(s)

Sign In
                           OR                           
                           OR                           
Register

Sign up using

                           OR                           
Forgot Password
Reset Password
Fill out the form below and reset your password: