我使用php api for blockchain.info。
这是我的代码:
$Blockchain = new \Blockchain\Blockchain();
$Blockchain->setServiceUrl('http://localhost:' . env('BTCPORT') . '/');
$Blockchain->Wallet->credentials($w_id, $w_password);
// $w_id is wallet id
$response = $Blockchain->Wallet->send($account, $amount, null, $fee, 'my comment');
这里我的node.js进程说错误:缺少查询参数:api_code'。 我使用这个php库https://github.com/blockchain/api-v1-client-php
答案 0 :(得分:1)