使用请求模块在Node.js中发送URL编码的参数

时间:2015-07-27 16:33:58

标签: node.js request npm pastebin

我正在尝试使用request模块create a new paste using the PasteBin API,如此:

var request = require("request");
request({
    url : "http://pastebin.com/api/api_post.php",
    method : "POST",
    qs : {
        "api_dev_key" : MY_DEV_KEY,
        "api_option" : "paste",
        "api_paste_code" : "random text"
    }
},function(err,res,body){
    ...
});  

我的理解是,由于方法是POST并且提供了查询字符串参数,因此qs对象中的值将作为key=value对存储在正文中。 (参考:How are parameters sent in an HTTP POST request?

但是,我从PasteBin返回Bad API request, invalid api_option。所以我curl来自我的终端的请求是这样的:

curl -X POST "http://pastebin.com/api/api_post.php" -d "api_dev_key=[MY_DEV_KEY]&api_option=paste&api_paste_code=some+random+text"  

这很有效。

因此,这导致了两个问题:

  1. 在提出POST请求并提供qs时,参数的具体情况如何?
  2. 如何仅使用request模块发送URL编码的正文?

2 个答案:

答案 0 :(得分:8)

qs键重命名为对象中的formqs密钥用于在URL的末尾指定查询字符串(例如,对于GET请求)。 form密钥用于指定表单URL编码的请求正文(例如,对于POST请求)。

答案 1 :(得分:0)

对我来说同样的问题,最适合我的解决方法是

request.post({
headers: {
    'Content-Type': 'application/x-www-form-urlencoded'
},
url : "http://pastebin.com/api/api_post.php",
body : "api_dev_key=MY_DEV_KEY&api_option=paste&api_paste_code=andom text"},function(err,res,body){  ...});