本文实例讲述了php版微信数据统计接口用法。分享给大家供大家参考,具体如下:
php版微信数据统计接口其实是非常的好用了在前版本还没有此功能是后面的版本增加上去了,下面来看一个php版微信数据统计接口的例子:
微信在1月6日时放出了新的数据分析接口传送门:
请注意:
1、接口侧的公众号数据的数据库中仅存储了2014年12月1日之后的数据,将查询不到在此之前的日期,即使有查到,也是不可信的脏数据;
2、请开发者在调用接口获取数据后,将数据保存在自身数据库中,即加快下次用户的访问速度,也降低了微信侧接口调用的不必要损耗。
用户分析数据接口指的是用于获得公众平台官网数据统计模块中用户分析数据的接口,具体接口列表如下(暂无用户属性数据接口):
最大时间跨度是指一次接口调用时最大可获取数据的时间范围,如最大时间跨度为7是指最多一次性获取7天的数据。access_token的实际值请通过“获取access_token”来获取。
接口调用请求说明
用户分析数据接口(包括接口列表中的所有接口)需要向相应接口调用地址post以下示例数据包:
1
2
3
4
|
{
"begin_date" : "2014-12-02" ,
"end_date" : "2014-12-07"
}
|
调用参数说明:
粗略看了下,暂时还是内测阶段,不过因为是新接口,所以要改进下本站所用的微信高级接口的类。修改如下:
在类里加上新接口常量:
1
2
|
api_data_cube_url = 'https://api.weixin.qq.com/datacube' ,
api_type_data = 'datacube'
|
修改call方法:因为它要求url参数只是access token所以跟以前json时一样,不过要在判断里加入datacube的判断(注:注释已经说明):
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
|
public function call( $api_name , $params = array (), $type = self::get, $api_type = self::api_type_cgi) {
//加入datacube后,用switch来组接口url
switch (true) {
case $api_type == self::api_type_pay :
$url = self::pay_url. $api_name ;
break ;
case $api_type == self::api_type_data:
$url = self::api_data_cube_url. $api_name ;
break ;
default :
$url = self::api_url_prefix. $api_name ;
}
if (in_array( $api_name , self:: $_no_need_token_apis )) {
$res = $this ->request( $url , $params , $type );
if ( $res ) {
return $res ;
}
}
$this ->_access_token = $this ->getaccesstoken();
if ( $this ->_access_token) {
//加多个or判断带上access_token
if ( $type == self::json || $api_type == self::api_type_data) {
$url = $url . '?access_token=' . $this ->_access_token;
} else {
$params [ 'access_token' ] = $this ->_access_token;
}
$res = $this ->request( $url , $params , $type );
if ( $res ) {
return $res ;
}
}
return false;
}
|
最后cli方式call文档中一个getinterfacesummary接口调试(注意:是post方式给接口):
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
if (isset( $argc ) && $argc >= 1 && $argv [0] == __file__ ) {
$client = new wechatjson( array (
wechatjson::app_id => 'wx78sfsd023744d51' ,
wechatjson::app_secret => '9ba3476db1fsfsff512esf2f630fb9' ,
));
$res = $client ->call( '/getinterfacesummary' , array (
'begin_date' => '2014-12-01' ,
'end_date' => '2014-12-31'
), wechatjson::post, wechatjson::api_type_data);
if (! $res ) {
var_dump( $client ->_error);
}
var_dump( $res );
}
|
运行结果,虽然是api 未授权(毕竟还是内测有条件的合作伙伴有资料,公众号的就等吧):
后记,以后再做个linux任务让后台自己每隔一段时间(一周或30天)因为数据统计接口有的是7天,有的是30天。这样执行取到数据再写进库表,生成图报表,省下自己log一些官方已经给你log的统计!
希望本文所述对大家php程序设计有所帮助。