tzi/piwik-client
Composer 安装命令:
composer require tzi/piwik-client
包简介
Simple client for Piwik (web analytics) API.
关键字:
README 文档
README
PHP 5.3 client for Piwik web analytics.
To see all available methods & their parameters, visit Piwik API Reference.
Usage
Through HTTP connection
use Knp\PiwikClient\Connection\HttpConnection; use Knp\PiwikClient\Client; // Instantiate piwik client $connection = new HttpConnection('http://demo.piwik.org'); $client = new Client($connection, 'YOUR_API_TOKEN'); // Call piwik API $array = $client->call('PLUGIN.METHOD', $parameters);
Through local (PHP) connection
use Knp\PiwikClient\Connection\PiwikConnection; use Knp\PiwikClient\Client; // Instantiate piwik require_once PIWIK_INCLUDE_PATH . "/index.php"; require_once PIWIK_INCLUDE_PATH . "/core/API/Request.php"; Piwik_FrontController::getInstance()->init(); // Instantiate piwik client $connection = new PiwikConnection(); $client = new Client($connection, 'YOUR_API_TOKEN'); // Call piwik API $array = $client->call('PLUGIN.METHOD', $parameters);
Installation
This library can be installed using composer by adding the following in the require section of your composer.json file:
"require": { ... "knplabs/knp-piwik-client": "dev-master" },
Copyright
PiwikClient is released under the MIT License. See the bundled LICENSE file for details.
统计信息
- 总下载量: 15
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 0
- 点击次数: 0
- 依赖项目数: 0
- 推荐数: 0
其他信息
- 授权协议: MIT
- 更新时间: 2016-10-13