我正在尝试使用 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:
。你可以在这里查看。
我的 bitcoin.conf:
rpcuser=bitcoinrpc
rpcpassword=password
alertnotify=echo %s | mail -s "Bitcoin Alert" admin@foo.com
server=1
到底发生了什么,我该如何解决?