2

我正在尝试在我的 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();
})
4

3 回答 3

2

您缺少以下--header选项:

curl --request POST \
    --header 'Content-type: application/json' \
    --data '{"jsonrpc":"2.0","method":"personal_newAccount","params":["pass"],"id":74}' \
    http://localhost:8545
于 2015-09-05T15:13:15.897 回答
2

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。

于 2015-08-11T02:59:12.520 回答
0

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

--rpcapi "personal,eth,web3"
于 2016-06-20T13:10:49.837 回答