-1

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

正確に何が起こっているのか、どうすれば修正できますか?

4

1 に答える 1

0

I forgot to install the JSON-RPC PHP Library. Once installed it worked beautifully.

Please everyone, as a public service announcement I ask all y'all to remember to install your libraries.

于 2014-09-20T15:08:06.877 に答える