GithubHelp home page GithubHelp logo

POST not working? about node-rest-client HOT 9 CLOSED

aacerox avatar aacerox commented on August 18, 2024
POST not working?

from node-rest-client.

Comments (9)

aacerox avatar aacerox commented on August 18, 2024

Hi

don't know I'll take a look.

Thanks.

from node-rest-client.

aacerox avatar aacerox commented on August 18, 2024

Hi again

Could you please send me the code (or similar code ...) your using with the POST method?

thanks in advance.

from node-rest-client.

jetume avatar jetume commented on August 18, 2024

Please take a look at my pull request, I am guessing since Content-Length header wasn't being sent, express might be thinking that the request came with an empty body

#8

from node-rest-client.

aacerox avatar aacerox commented on August 18, 2024

fix it with pull request #8

Thanks.

from node-rest-client.

TobyEalden avatar TobyEalden commented on August 18, 2024

Still not working for me. See this https://gist.github.com/TobyEalden/6192116

Also, the recent pull request introduced a bug whereby args.headers is mandatory - if this line https://gist.github.com/TobyEalden/6192116#file-test-js-L7 is missing there is a crash.

from node-rest-client.

aacerox avatar aacerox commented on August 18, 2024

yep, you're Right I've just pushed the fix for the headers issue. I'm going to test your code and see if I can find what happends

Thanks

from node-rest-client.

aacerox avatar aacerox commented on August 18, 2024

Hi

I've been trying with my own server (simple node.js server without using "express.js") and everything works fine. please see https://gist.github.com/aacerox/f2fdf78e651804e5b004.

It seems to be something in the way express manage requests. Maybe you can use a node debugger like https://github.com/node-inspector/node-inspector to debug what's "express.js" doing with requests.

by the way you can enable console debug on node-rest-client by setting an environtment variable DEBUG like:

windows -> set DEBUG=true
linux -> export DEBUG=true

I'll try to see something by my self.

from node-rest-client.

aacerox avatar aacerox commented on August 18, 2024

I've found it!!!

you must set Content-type:application/json in client params headers:

var restClient = require("../../lib/node-rest-client").Client;
var appgAPIClient = new restClient();
var apiURLBase = "http://localhost:5000";

var args = {
  data: { test: "hello" },
  headers:{"Content-Type": "application/json"} 
};

appgAPIClient.post(apiURLBase + "/postTest", args, function(data,response) {
  if (data.hasOwnProperty("ok") && data.ok === true) {
    console.log("success");
  } else {
    console.log("failure");
  }
});

Also I've a bug in my last commit with header initialization, that I've already fix.

from node-rest-client.

TobyEalden avatar TobyEalden commented on August 18, 2024

Great thanks - I can confirm that works for me too.

BTW strictly speaking, https://github.com/aacerox/node-rest-client/blob/master/lib/node-rest-client.js#L149 should be

if (typeof options.headers === "undefined")

:)

Thanks for your help

from node-rest-client.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.