|
@@ -64,4 +64,42 @@ $config['get_msg'] = array
|
|
|
),
|
|
|
);
|
|
|
|
|
|
+$config['total_base'] = array
|
|
|
+(
|
|
|
+ 'name' => '概况趋势',
|
|
|
+ 'method' => 'post',
|
|
|
+ 'json' => true,
|
|
|
+ 'url' => 'https://api.weixin.qq.com/datacube/getweanalysisappiddailysummarytrend?',
|
|
|
+ 'param' => array
|
|
|
+ (
|
|
|
+ 'access_token' => 'token',
|
|
|
+ 'end_date' => 'end_date',
|
|
|
+ 'begin_date' => 'begin_date',
|
|
|
+ ),
|
|
|
+
|
|
|
+ 'response' => array
|
|
|
+ (
|
|
|
+
|
|
|
+ ),
|
|
|
+);
|
|
|
+
|
|
|
+$config['total_visit'] = array
|
|
|
+(
|
|
|
+ 'name' => '访问趋势',
|
|
|
+ 'method' => 'post',
|
|
|
+ 'json' => true,
|
|
|
+ 'url' => 'https://api.weixin.qq.com/datacube/getweanalysisappiddailyvisittrend?',
|
|
|
+ 'param' => array
|
|
|
+ (
|
|
|
+ 'access_token' => 'token',
|
|
|
+ 'end_date' => 'end_date',
|
|
|
+ 'begin_date' => 'begin_date',
|
|
|
+ ),
|
|
|
+
|
|
|
+ 'response' => array
|
|
|
+ (
|
|
|
+
|
|
|
+ ),
|
|
|
+);
|
|
|
+
|
|
|
return $config;
|