version upgrade to 1.6.3 & 1.1.3

This commit is contained in:
jinyu
2015-11-10 10:05:42 +08:00
parent b4a865dedd
commit cabf9e2900
17 changed files with 33 additions and 21 deletions
+5 -1
View File
@@ -164,4 +164,8 @@
* 2015-09-21
+ version upgrade to 1.6.2
+ version upgrade to 1.6.2
* 2015-11-09
+ version upgrade to 1.6.3
+2 -2
View File
@@ -43,12 +43,12 @@ weixin4j-mp
如何使用
--------
0.maven依赖(1.6.2,2015-09-27 released)
0.maven依赖(1.6.3,2015-11-09 released)
<dependency>
<groupId>com.foxinmy</groupId>
<artifactId>weixin4j-mp</artifactId>
<version>1.6.2</version>
<version>1.6.3</version>
</dependency>
1.需新增或拷贝`weixin4j.properties`文件到项目的`classpath`
+1 -1
View File
@@ -5,7 +5,7 @@
<parent>
<groupId>com.foxinmy</groupId>
<artifactId>weixin4j</artifactId>
<version>1.6.2</version>
<version>1.6.3</version>
</parent>
<artifactId>weixin4j-mp</artifactId>
<name>weixin4j-mp</name>
@@ -1364,5 +1364,5 @@ public class WeixinProxy {
throws WeixinException {
return dataApi.datacube(datacubeType, date);
}
public final static String VERSION = "1.6.3";
@@ -88,8 +88,8 @@ public class MenuApi extends MpApi {
public List<Button> getMenu() throws WeixinException {
String menu_get_uri = getRequestUri("menu_get_uri");
Token token = tokenHolder.getToken();
WeixinResponse response = weixinExecutor.get(String.format(menu_get_uri,
token.getAccessToken()));
WeixinResponse response = weixinExecutor.get(String.format(
menu_get_uri, token.getAccessToken()));
JSONArray buttons = response.getAsJson().getJSONObject("menu")
.getJSONArray("button");