real-intel / api-wrapper
该软件包最新版本(1.0.0)没有可用的许可信息。
这是一个用于与数据亮点/真实智能API套件集成的包装库。
1.0.0
2020-12-08 12:11 UTC
Requires (Dev)
- phpunit/phpunit: ^9.5
This package is auto-updated.
Last update: 2024-09-05 20:22:03 UTC
README
用于与真实智能API集成的包装库
安装
您可以使用composer将此库安装到您的php项目中
composer require real-intel/api-wrapper
为了使用此库,您需要使用您的真实智能凭据对其进行初始化
$wrapper = new RealIntelDelegate([
'api_key' => 'Your-API-Key',
'customer_id' => 'Your-Customer-ID',
'sandbox' => true,
'show_notes' => true
]);
初始化后,您可以按以下方式调用类:
$consumer = $wrapper->doConsumerTraceLite("Consumer-ID-Number", "Consumer-Last-Name", "Your-Unique-Reference");
需要调用多个API,因此您可以参考真实智能API文档。
注意:此库中尚不可用所有API调用,将在以后添加。如果您需要调用,请与我们联系。