We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Hello,
I can't find anything about this in the provided documentation. Is it possible to make POST requests ( and send along some parameters )? Thanks!
The text was updated successfully, but these errors were encountered:
I have the same question - any examples?
Sorry, something went wrong.
According to http://curl.haxx.se/libcurl/c/curl_easy_setopt.html
var qs = require('querystring'); var curl = require('node-curl'); var opts = { POST: 1, POSTFIELDS: qs.stringify({ fleld1: someValue1, field2: someValue2 }) }; curl(targetUrl, opts, function(err) { console.log(this.body); });
This should print body of the HTTP response.
No branches or pull requests
Hello,
I can't find anything about this in the provided documentation. Is it possible to make POST requests ( and send along some parameters )?
Thanks!
The text was updated successfully, but these errors were encountered: