我是将比特币API集成到我的PHP页面的新手,我用luno创建了一个比特币账户,我创建了API密钥。
我已经使用生成的API密钥获得了这个url以获得平衡:
$ curl -u keyid:keysecret https://api.mybitx.com/api/1/balance
有人可以帮助我提供一个正确的示例,说明如何使用我的API和这个给定的网址在PHP页面上显示我的钱包余额吗?
答案 0 :(得分:0)
我知道将curl
命令转换为可执行PHP代码的最简单方法是使用此站点:https://incarnate.github.io/curl-to-php/
只需添加curl
命令:
curl -u keyid:keysecret https://api.mybitx.com/api/1/balance
到文本框中说"在这里粘贴卷曲"。然后获取输出的PHP并将其集成到您的应用程序中。
答案 1 :(得分:0)
您可以使用PHP Requests library轻松制作HTTP请求。您的curl
命令可以按如下方式转换:
<?php
include('vendor/rmccue/requests/library/Requests.php');
Requests::register_autoloader();
// Use additional headers if necessary
$headers = array();
// Create authorization using key and secret.
$options = array('auth' => array('keyid', 'keysecret'));
// Create the GET request to the URL
$response = Requests::get('https://api.mybitx.com/api/1/balance', $headers, $options);
// The result is available in $response
?>