piwik api: 调用api数据

2024-03-25 13:08
文章标签 数据 调用 api piwik

本文主要是介绍piwik api: 调用api数据,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!

1.关于api



2.api的使用

参考网址:http://developer.piwik.org/guides/querying-the-reporting-api

<?php
use Piwik\API\Request;
use Piwik\FrontController;define('PIWIK_INCLUDE_PATH', realpath('../..'));
define('PIWIK_USER_PATH', realpath('../..'));
define('PIWIK_ENABLE_DISPATCH', false);
define('PIWIK_ENABLE_ERROR_HANDLER', false);
define('PIWIK_ENABLE_SESSION_START', false);// if you prefer not to include 'index.php', you must also define here PIWIK_DOCUMENT_ROOT
// and include "libs/upgradephp/upgrade.php" and "core/Loader.php"
require_once PIWIK_INCLUDE_PATH . "/index.php";
require_once PIWIK_INCLUDE_PATH . "/core/API/Request.php";FrontController::getInstance()->init();// This inits the API Request with the specified parameters
$request = new Request('module=API&method=UserSettings.getResolution&idSite=7&date=yesterday&period=week&format=XML&filter_limit=3&token_auth=anonymous
');
// Calls the API and fetch XML data back
$result = $request->process();
echo $result;Here is the output of this script:<?xml version="1.0" encoding="utf-8" ?>
<result><row><label>1920x1080</label><nb_visits>1742</nb_visits><nb_actions>4343</nb_actions><max_actions>89</max_actions><sum_visit_length>349083</sum_visit_length><bounce_count>1135</bounce_count><nb_visits_converted>52</nb_visits_converted><sum_daily_nb_uniq_visitors>1503</sum_daily_nb_uniq_visitors></row><row><label>1366x768</label><nb_visits>1045</nb_visits><nb_actions>2214</nb_actions><max_actions>38</max_actions><sum_visit_length>147636</sum_visit_length><bounce_count>747</bounce_count><nb_visits_converted>26</nb_visits_converted><sum_daily_nb_uniq_visitors>937</sum_daily_nb_uniq_visitors></row><row><label>1680x1050</label><nb_visits>533</nb_visits><nb_actions>1358</nb_actions><max_actions>47</max_actions><sum_visit_length>117723</sum_visit_length><bounce_count>345</bounce_count><nb_visits_converted>11</nb_visits_converted><sum_daily_nb_uniq_visitors>459</sum_daily_nb_uniq_visitors></row>
</result>

api调用的方式:

<?php
exit; // REMOVE this line to run the script// this token is used to authenticate your API request.
// You can get the token on the API page inside your Piwik interface
$token_auth = 'anonymous';// we call the REST API and request the 100 first keywords for the last month for the idsite=7
$url = "http://demo.piwik.org/";
$url .= "?module=API&method=Referrers.getKeywords";
$url .= "&idSite=7&period=month&date=yesterday";
$url .= "&format=PHP&filter_limit=20";
$url .= "&token_auth=$token_auth";$fetched = file_get_contents($url);
$content = unserialize($fetched);// case error
if (!$content) {print("Error, content fetched = " . $fetched);
}print("<h1>Keywords for the last month</h1>");
foreach ($content as $row) {$keyword = htmlspecialchars(html_entity_decode(urldecode($row['label']), ENT_QUOTES), ENT_QUOTES);$hits = $row['nb_visits'];print("<b>$keyword</b> ($hits hits)<br>");
}Here is the output of this code:<h1>Keywords for the last month</h1><b>Keyword not defined</b> (16481 hits)<br><b>xxxxxx</b> (80 hits)<br><b>xxx.xxx</b> (9 hits)<br><b>downloads anzeigen</b> (7 hits)<br><b>youtube-downloader.savetubevideo.com / referral</b> (4 hits)<br><b>meine downloads anzeigen</b> (3 hits)<br><b>understanding piwik</b> (3 hits)<br><b>bbw highway .com</b> (2 hits)<br><b>imgsrc</b> (2 hits)<br><b>piwik</b> (2 hits)<br><b>piwik deutsch</b> (2 hits)<br><b>piwik exporting reports</b> (2 hits)<br><b>piwik failed to load html file</b> (2 hits)<br><b>piwik not tracking</b> (2 hits)<br><b>piwik sharepoint</b> (2 hits)<br><b>premature end of data</b> (2 hits)<br><b>vertrag mit piwik zur auftragsdatenverarbeitung</b> (2 hits)<br><b>wp-piwik einrichten</b> (2 hits)<br><b>"edt 2014 x86_64" ext:php</b> (1 hits)<br><b>"failed to load html file" piwik plugins/sitesmanager/templates/index.html</b> (1 hits)<br


这篇关于piwik api: 调用api数据的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!



http://www.chinasem.cn/article/845102

相关文章

Python将大量遥感数据的值缩放指定倍数的方法(推荐)

《Python将大量遥感数据的值缩放指定倍数的方法(推荐)》本文介绍基于Python中的gdal模块,批量读取大量多波段遥感影像文件,分别对各波段数据加以数值处理,并将所得处理后数据保存为新的遥感影像... 本文介绍基于python中的gdal模块,批量读取大量多波段遥感影像文件,分别对各波段数据加以数值处

使用MongoDB进行数据存储的操作流程

《使用MongoDB进行数据存储的操作流程》在现代应用开发中,数据存储是一个至关重要的部分,随着数据量的增大和复杂性的增加,传统的关系型数据库有时难以应对高并发和大数据量的处理需求,MongoDB作为... 目录什么是MongoDB?MongoDB的优势使用MongoDB进行数据存储1. 安装MongoDB

Python MySQL如何通过Binlog获取变更记录恢复数据

《PythonMySQL如何通过Binlog获取变更记录恢复数据》本文介绍了如何使用Python和pymysqlreplication库通过MySQL的二进制日志(Binlog)获取数据库的变更记录... 目录python mysql通过Binlog获取变更记录恢复数据1.安装pymysqlreplicat

Linux使用dd命令来复制和转换数据的操作方法

《Linux使用dd命令来复制和转换数据的操作方法》Linux中的dd命令是一个功能强大的数据复制和转换实用程序,它以较低级别运行,通常用于创建可启动的USB驱动器、克隆磁盘和生成随机数据等任务,本文... 目录简介功能和能力语法常用选项示例用法基础用法创建可启动www.chinasem.cn的 USB 驱动

Oracle数据库使用 listagg去重删除重复数据的方法汇总

《Oracle数据库使用listagg去重删除重复数据的方法汇总》文章介绍了在Oracle数据库中使用LISTAGG和XMLAGG函数进行字符串聚合并去重的方法,包括去重聚合、使用XML解析和CLO... 目录案例表第一种:使用wm_concat() + distinct去重聚合第二种:使用listagg,

Python实现将实体类列表数据导出到Excel文件

《Python实现将实体类列表数据导出到Excel文件》在数据处理和报告生成中,将实体类的列表数据导出到Excel文件是一项常见任务,Python提供了多种库来实现这一目标,下面就来跟随小编一起学习一... 目录一、环境准备二、定义实体类三、创建实体类列表四、将实体类列表转换为DataFrame五、导出Da

Python实现数据清洗的18种方法

《Python实现数据清洗的18种方法》本文主要介绍了Python实现数据清洗的18种方法,文中通过示例代码介绍的非常详细,对大家的学习或者工作具有一定的参考学习价值,需要的朋友们下面随着小编来一起学... 目录1. 去除字符串两边空格2. 转换数据类型3. 大小写转换4. 移除列表中的重复元素5. 快速统

Python数据处理之导入导出Excel数据方式

《Python数据处理之导入导出Excel数据方式》Python是Excel数据处理的绝佳工具,通过Pandas和Openpyxl等库可以实现数据的导入、导出和自动化处理,从基础的数据读取和清洗到复杂... 目录python导入导出Excel数据开启数据之旅:为什么Python是Excel数据处理的最佳拍档

Idea调用WebService的关键步骤和注意事项

《Idea调用WebService的关键步骤和注意事项》:本文主要介绍如何在Idea中调用WebService,包括理解WebService的基本概念、获取WSDL文件、阅读和理解WSDL文件、选... 目录前言一、理解WebService的基本概念二、获取WSDL文件三、阅读和理解WSDL文件四、选择对接

在Pandas中进行数据重命名的方法示例

《在Pandas中进行数据重命名的方法示例》Pandas作为Python中最流行的数据处理库,提供了强大的数据操作功能,其中数据重命名是常见且基础的操作之一,本文将通过简洁明了的讲解和丰富的代码示例,... 目录一、引言二、Pandas rename方法简介三、列名重命名3.1 使用字典进行列名重命名3.编