nobitex api php client
v2.0.4
這是 Nobitex API 的 PHP 包裝器。
此包裝器依賴 HTTPlug,它定義瞭如何發送和接收 HTTP 訊息。您可以使用任何實作 php-http/client-implementation 的函式庫來傳送 HTTP 訊息。
composer require nekofar/nobitex:^2.0
若要使用 cURL 安裝,您可以執行以下命令:
composer require nekofar/nobitex:^2.0 php-http/curl-client:^2.0
使用您的使用者名稱和密碼存取您自己的帳戶。
use Nekofar Nobitex Client ;
use Nekofar Nobitex Config ;
$ config = Config:: doAuth ( ' username ' , ' password ' )
$ client = Client:: create ( $ config )
try {
$ profile = $ client -> getUserProfile ();
echo ' Email: ' . $ profile -> email . PHP_EOL ;
echo ' Last name: ' . $ profile -> lastName . PHP_EOL ;
echo ' First name: ' . $ profile -> firstName . PHP_EOL ;
} catche (Exception $ e ) {
echo ' Error: ' . $ e -> getMessage ();
}
該測試套件是使用 PHPUnit 建構的。透過執行phpunit
命令或此編寫器腳本來執行單元測試套件。
composer test
麻省理工學院許可證 (MIT)。請參閱許可證文件以獲取更多資訊。