FaucetPay API
1.0
与 FaucetPay 交互的 API 包装器。
该软件包最好通过 Composer 安装:
composer require mahtab2003/faucetpay
在开始之前,您需要从 FaucetPay 获取 API 密钥。登录 FaucetPay,进入 Faucet Owner Dashboard -> Your Faucet
-> Reveal API Key。使用此 API 密钥与 FaucetPay 交互。
FaucetPay API 公开了以下方法。下面列出了可用的参数。
use Mahtab2003 FaucetPay Api ;
// Create a new Api class instance.
$ api = new Api ( ' API Key ' , ' BTC ' );
// Get the balance of the faucet.
$ response = $ api -> getBalance ();
// Check whether the request was successful.
if ( $ response -> isSuccessful ()) {
$ data = $ response -> getData ();
echo ' Your faucet balance is: ' . $ data [ ' balance ' ];
} else {
echo ' Error: ' . $ response -> getMessage ();
}
©️ 版权所有 2022 NXTS 开发者。根据 MPL-2.0 许可证发布的代码。