Bitcoind JSON-RPC调用不起作用

时间:2014-09-19 02:03:27

标签: php json bitcoin bitcoind

我尝试使用PHP中的Bitcoind JSON-RPC API来控制我的钱包,使用以下代码。

<?php 
  echo "hello";

  require_once 'jsonRPCClient.php';

  $bitcoin = new jsonRPCClient('http://bitcoinrpc:password@127.0.0.1:8332/');

  echo "Received: ".$bitcoin->getnewaddress()."\n";

?>

只会打印hello而不是Recieved:。您可以查看here.

我的bitcoin.conf:

rpcuser=bitcoinrpc
rpcpassword=password
alertnotify=echo %s | mail -s "Bitcoin Alert" admin@foo.com
server=1

究竟发生了什么,我该如何解决?

1 个答案:

答案 0 :(得分:0)

我忘了安装JSON-RPC PHP Library.一旦安装它就能很好地工作。

请大家,作为公益广告,我要求所有人都记得安装你的图书馆。