我尝试使用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
究竟发生了什么,我该如何解决?