1
0
mirror of synced 2025-12-18 05:47:58 +08:00

整理及重构

This commit is contained in:
Daniel Qian
2014-10-22 10:29:47 +08:00
parent 67795a092d
commit a8f5d07ff3
212 changed files with 1701 additions and 3459 deletions

View File

@@ -40,10 +40,11 @@ weixin-java-tools
## Hello World
```java
WxConfigStorage config = new WxInMemoryConfigStorage();
config.setAppId(...); // 设置微信公众号的appid
config.setSecret(...); // 设置微信公众号的app secret
config.setToken(...); // 设置微信公众号的token
WxInMemoryConfigStorage config = new WxInMemoryConfigStorage();
config.setAppId(...); // 设置微信公众号的appid
config.setSecret(...); // 设置微信公众号的app secret
config.setToken(...); // 设置微信公众号的token
config.setAesKey(...); // 设置微信公众号的EncodingAESKey
WxServiceImpl wxService = new WxServiceImpl();
wxService.setWxConfigStorage(config);