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)。请参阅许可证文件以获取更多信息。