Api
如何使用 php cURL 或 javascript 獲取 BRL(真實)的目前 BTC 匯率
反正有沒有得到目前的 BRL = BTC 匯率。
我看到了區塊鏈股票程式碼。但 BRL 貨幣的價值並未更新,如preev 中所列。我想得到
current 1BTC= how much BRL
提前致謝!
BitPay 在<https://bitpay.com/api/rates>
上有一個 JSON API 您可以使用此命令獲取 BRL 值併計算,(此 API 每 1 分鐘更新一次)curl -ks https://bitpay.com/api/rates | python -m json.tool | grep -iA 1 'Brasilian Real' | grep -i 'rate' | cut -f2 -d ':' | tr -d ' '
您將需要:
CURL
Python 2.7+
grep + cut + tr
這是使用 PHP 以 BRL 形式列印1 BTC 價值的簡單方法。
如果需要,您可以進一步操作包含 BRL 中 1 BTC 值的字元串。
<?php $jsnsrc = "https://blockchain.info/ticker"; $json = file_get_contents($jsnsrc); $json = json_decode($json); $one_Btc_To_Brl = $json->BRL->last; print "1 BTC = " . $one_Btc_to_Brl; ?>