File tree Expand file tree Collapse file tree 1 file changed +11
-9
lines changed
weixin-java-mp/src/main/java/me/chanjar/weixin/mp/api Expand file tree Collapse file tree 1 file changed +11
-9
lines changed Original file line number Diff line number Diff line change 1
1
package me .chanjar .weixin .mp .api ;
2
2
3
- import java .util .Date ;
4
- import java .util .List ;
5
-
6
3
import me .chanjar .weixin .common .exception .WxErrorException ;
7
4
import me .chanjar .weixin .mp .bean .result .WxMpUserCumulate ;
8
5
import me .chanjar .weixin .mp .bean .result .WxMpUserSummary ;
9
6
7
+ import java .util .Date ;
8
+ import java .util .List ;
9
+
10
10
/**
11
11
* 统计分析相关接口
12
12
* Created by Binary Wang on 2016/8/23.
@@ -16,22 +16,24 @@ public interface WxMpDataCubeService {
16
16
/**
17
17
* <pre>
18
18
* 获取用户增减数据
19
- * http://mp.weixin.qq.com/wiki/3/ecfed6e1a0a03b5f35e5efac98e864b7.html
19
+ * 详情请见文档:<a href="http://mp.weixin.qq.com/wiki?t=resource/res_main&id=mp1421141082&token=&lang=zh_CN">用户分析数据接口</a>
20
+ * 接口url格式:https://api.weixin.qq.com/datacube/getusersummary?access_token=ACCESS_TOKEN
20
21
* </pre>
21
22
*
22
- * @param beginDate 最大时间跨度7天
23
- * @param endDate endDate不能早于begingDate
23
+ * @param beginDate 开始时间
24
+ * @param endDate 最大时间跨度7天, endDate不能早于begingDate
24
25
*/
25
26
List <WxMpUserSummary > getUserSummary (Date beginDate , Date endDate ) throws WxErrorException ;
26
27
27
28
/**
28
29
* <pre>
29
30
* 获取累计用户数据
30
- * http://mp.weixin.qq.com/wiki/3/ecfed6e1a0a03b5f35e5efac98e864b7.html
31
+ * 详情请见文档:<a href="http://mp.weixin.qq.com/wiki?t=resource/res_main&id=mp1421141082&token=&lang=zh_CN">用户分析数据接口</a>
32
+ * 接口url格式:https://api.weixin.qq.com/datacube/getusercumulate?access_token=ACCESS_TOKEN
31
33
* </pre>
32
34
*
33
- * @param beginDate 最大时间跨度7天
34
- * @param endDate endDate不能早于begingDate
35
+ * @param beginDate 开始时间
36
+ * @param endDate 最大时间跨度7天, endDate不能早于begingDate
35
37
*/
36
38
List <WxMpUserCumulate > getUserCumulate (Date beginDate , Date endDate ) throws WxErrorException ;
37
39
}
You can’t perform that action at this time.
0 commit comments