wnasich / signthis-php
用于消费 Signthis JSON API 的 PHP 客户端
0.9.2
2016-08-25 18:09 UTC
Requires
- php: >=5.4
Requires (Dev)
- phpunit/phpunit: ~4.8
This package is auto-updated.
Last update: 2024-09-11 16:57:46 UTC
README
这是 Signthis REST API 的 PHP 包装器。Signthis REST API.
设置
为了使用这个库,您必须提供有效的 email
和 password
。
require_once(__DIR__ . "/signthis/SignthisClient.php");
$client = new Client();
$client->auth->login('email', 'password');
请参阅示例文件 example/example.php