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 許可證發布的程式碼。