NodeJS POST请求通过JSON-RPC

时间:2015-08-11 02:12:29

标签: json node.js rest json-rpc ethereum

我正在尝试在我的NodeJS服务器上通过JSON-RPC执行POST请求。转换以下curl命令:

curl -X POST --data '{"jsonrpc":"2.0","method":"personal_newAccount","params":["pass"],"id":74}' http://localhost:8545

在NodeJS中,我一直在接收:

200 {"id":-1,"jsonrpc":"2.0","error":{"code":-32600,"message":"Could not decode request"}}

在标题中我指定了Content-Type。如果有人可以指出我没有指定的内容以及如何将其添加到其中,将非常感激。

var headers = {
    'User-Agent':       'Super Agent/0.0.1',
    'Content-Type':     'application/json-rpc',
    'Accept':'application/json-rpc'
}

var options = {
    url: "http://localhost:8545",
    method: 'POST',
    headers: headers,
    form: {"jsonrpc":"2.0","method":"personal_newAccount","params":["pass"],"id":1}
}

request(options, function (error, response, body) {
    if (!error && response.statusCode == 200) {
        res.writeHeader(200, {"Content-Type": "text/plain"});
        res.write(res.statusCode.toString() + " " + body);
    }else{
      res.writeHeader(response.statusCode, {"Content-Type": "text/plain"});
      res.write(response.statusCode.toString() + " " + error);
    }
    res.end();
})

3 个答案:

答案 0 :(得分:2)

您错过了--header选项:

curl --request POST \
    --header 'Content-type: application/json' \
    --data '{"jsonrpc":"2.0","method":"personal_newAccount","params":["pass"],"id":74}' \
    http://localhost:8545

答案 1 :(得分:0)

form适用于application/x-www-url-encoded个请求,而非JSON。请尝试以下选项:

var options = {
  url: "http://localhost:8545",
  method: 'POST',
  headers: headers,
  body: JSON.stringify({
    jsonrpc: '2.0',
    method: 'personal_newAccount',
    params: ['pass'],
    id: 1
  })
}

您还可以在选项中设置json: true,让request自动将响应解析为JSON。

答案 2 :(得分:0)

要使用“personal_newAccount”和Ethereum Docs中的其余选项,您需要使用所需的API启动服务器:

using namespace Bar