katoni/api-php-client
Composer 安装命令:
composer require katoni/api-php-client
包简介
关键字:
README 文档
README
Installation
The Katoni API Client Library can be installed with Composer. Run this command:
composer require katoni/api-php-client:^1.0
Usage
Note: This library requires PHP 5.4 or greater.
Simple GET example of fetching products.
// include your composer dependencies require_once 'vendor/autoload.php'; $client = new Katoni\Client(); $client->setDeveloperKey("YOUR_APP_KEY"); $results = $client->get('/products'); foreach ($results as $item) { echo $item['name'], "<br /> \n"; }
统计信息
- 总下载量: 24
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 0
- 点击次数: 0
- 依赖项目数: 0
- 推荐数: 0
其他信息
- 授权协议: Apache-2.0
- 更新时间: 2016-08-29