0
我的代碼片段:如何爲比特幣操作設置區塊鏈網址?什麼是區塊鏈操作url的基礎url?
class Blockchain{
protected $guid; // Blockchain wallet identifier (Wallet ID)
protected $api_code; // API code, required for creating wallets
protected $main_password; // Main Blockchain Wallet password
protected $second_password; // Second Blockchain Wallet password if double encryption is enabled
protected $port = 3000; // Blockchain Wallet service port
protected $base_url = 'http://127.0.0.1'; // Base url to connect to the Blockchain Wallet service
public function __construct($config)
{
// Set config values
$this->guid = $config['guid'];
$this->main_password = $config['main_password'];
// Optional ones
$this->api_code = (isset($config['api_code'])) ? $config['api_code'] : NULL;
$this->second_password = (isset($config['second_password'])) ? $config['second_password'] : NULL;
$this->base_url = (isset($config['base_url'])) ? $config['base_url'] : $this->base_url;
$this->port = (isset($config['port'])) ? $config['port'] : $this->port;
log_message('info', 'Blockchain Class Initialized');
// Check if the Blockchain Wallet service is running
if ($this->execute($this->base_url.':'.$this->port) === NULL) {
show_error('Blockchain: Unable to connect to Blockchain Wallet service on: '.$this->base_url.':'.$this->port.'');
log_message('error', "Blockchain: Unable to connect to Blockchain Wallet service.");
}
}
public function wallet_balance()
{
// Get the base url
$url=$this->base_url;
// Add the port
$url.=':'.$this->port.'/';
// Add the api url
$url.='merchant/'.$this->guid.'/balance';
// Add options
// password
$url.='?password='.$this->main_password;
// Execute
return $this->execute($url);
}
public function execute($url)
{
// Get CURL resource
$curl = curl_init();
// Set options
curl_setopt_array($curl, array(
CURLOPT_RETURNTRANSFER => TRUE,
CURLOPT_URL => $url,
// CURLOPT_SSL_VERIFYPEER => FALSE,
));
// Send the request & save response
$response = curl_exec($curl);
// Close request to clear up some resources
curl_close($curl);
log_message('debug', 'Blockchain: URL executed '.$url);
// Return the decoded response as an associative array
return json_decode($response, TRUE);
}
}
會是怎樣的BASE_URL ..
我不理解的基本URL部分..
將它的本地或 「https://api.blockchain.info」(像這樣)
剛纔我在上面的代碼片段的以下聲明中提到了什麼:
protected $base_url = '???????????';
從哪個鏈接我會得到正確的迴應?
連接區塊鏈的確切程序是什麼?
請澄清我這個..
你有答案嗎,請在這裏發帖如果得到了......謝謝 –