How can I make an HTTP POST request with data in node.js?
|
Here's an example of using node.js to make a POST request to the Google Compiler API:
I've updated the code to show how to post data from a file, instead of the hardcoded string. It uses the async |
||||
|
|
This gets a lot easier if you use the request library.
Aside from providing a nice syntax it makes json requests easy, handles oauth signing (for twitter, etc.), can do multi-part forms (e.g. for uploading files) and streaming. |
|||||
|
|
Like so, as per the documentation for
|
|||||
|
|
I made a friendly wrapper for this complex API: https://gist.github.com/1393666 |
|||||||
|
|
I like the simplicity of superagent (https://github.com/visionmedia/superagent). Same api on both node and browser. |
|||
|
|
|
I use Restler and Needle for production purposes. They are both much more powerful than native httprequest. It is possible to request with basic authentication, special header entry or even upload/download files. As for post/get operation, they also are much simpler to use than raw ajax calls using httprequest.
|
||||
|
|
|
I am getting a problem for longer posts if there are umlaute (öäü) in the body. Therefore I am setting the content length like this:
This returns the actual binary length of the body. If I don't set it using a Buffer the body is read truncated on the server side. |
|||
|
|