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实现快速精准抓取网页数据,文中的示例代码简洁易懂,具有一定的借鉴价值,有需要的小伙伴可以了解下... 目录1. 准备工作2. 基础爬虫实现3. 高级功能扩展3.1 抓取文章详情3.2 保存数据到文件4. 完整示例

使用Java将各种数据写入Excel表格的操作示例

《使用Java将各种数据写入Excel表格的操作示例》在数据处理与管理领域,Excel凭借其强大的功能和广泛的应用,成为了数据存储与展示的重要工具,在Java开发过程中,常常需要将不同类型的数据,本文... 目录前言安装免费Java库1. 写入文本、或数值到 Excel单元格2. 写入数组到 Excel表格

C#如何调用C++库

《C#如何调用C++库》:本文主要介绍C#如何调用C++库方式,具有很好的参考价值,希望对大家有所帮助,如有错误或未考虑完全的地方,望不吝赐教... 目录方法一:使用P/Invoke1. 导出C++函数2. 定义P/Invoke签名3. 调用C++函数方法二:使用C++/CLI作为桥接1. 创建C++/CL

python处理带有时区的日期和时间数据

《python处理带有时区的日期和时间数据》这篇文章主要为大家详细介绍了如何在Python中使用pytz库处理时区信息,包括获取当前UTC时间,转换为特定时区等,有需要的小伙伴可以参考一下... 目录时区基本信息python datetime使用timezonepandas处理时区数据知识延展时区基本信息

Qt实现网络数据解析的方法总结

《Qt实现网络数据解析的方法总结》在Qt中解析网络数据通常涉及接收原始字节流,并将其转换为有意义的应用层数据,这篇文章为大家介绍了详细步骤和示例,感兴趣的小伙伴可以了解下... 目录1. 网络数据接收2. 缓冲区管理(处理粘包/拆包)3. 常见数据格式解析3.1 jsON解析3.2 XML解析3.3 自定义

SpringMVC 通过ajax 前后端数据交互的实现方法

《SpringMVC通过ajax前后端数据交互的实现方法》:本文主要介绍SpringMVC通过ajax前后端数据交互的实现方法,本文给大家介绍的非常详细,对大家的学习或工作具有一定的参考借鉴价... 在前端的开发过程中,经常在html页面通过AJAX进行前后端数据的交互,SpringMVC的controll

Pandas统计每行数据中的空值的方法示例

《Pandas统计每行数据中的空值的方法示例》处理缺失数据(NaN值)是一个非常常见的问题,本文主要介绍了Pandas统计每行数据中的空值的方法示例,具有一定的参考价值,感兴趣的可以了解一下... 目录什么是空值?为什么要统计空值?准备工作创建示例数据统计每行空值数量进一步分析www.chinasem.cn处

如何使用 Python 读取 Excel 数据

《如何使用Python读取Excel数据》:本文主要介绍使用Python读取Excel数据的详细教程,通过pandas和openpyxl,你可以轻松读取Excel文件,并进行各种数据处理操... 目录使用 python 读取 Excel 数据的详细教程1. 安装必要的依赖2. 读取 Excel 文件3. 读

Spring 请求之传递 JSON 数据的操作方法

《Spring请求之传递JSON数据的操作方法》JSON就是一种数据格式,有自己的格式和语法,使用文本表示一个对象或数组的信息,因此JSON本质是字符串,主要负责在不同的语言中数据传递和交换,这... 目录jsON 概念JSON 语法JSON 的语法JSON 的两种结构JSON 字符串和 Java 对象互转

C++如何通过Qt反射机制实现数据类序列化

《C++如何通过Qt反射机制实现数据类序列化》在C++工程中经常需要使用数据类,并对数据类进行存储、打印、调试等操作,所以本文就来聊聊C++如何通过Qt反射机制实现数据类序列化吧... 目录设计预期设计思路代码实现使用方法在 C++ 工程中经常需要使用数据类,并对数据类进行存储、打印、调试等操作。由于数据类