blockchain.info api_code丢失了

时间:2016-07-15 13:25:13

标签: php bitcoin blockchain

我使用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进程说错误:缺少查询参数:a​​pi_code'。 我使用这个php库https://github.com/blockchain/api-v1-client-php

1 个答案:

答案 0 :(得分:1)

检查区块链api。它应该是

$Blockchain = new \Blockchain\Blockchain($url, $my_api_code);

如果您需要API代码,可以获得here