-
Notifications
You must be signed in to change notification settings - Fork 448
如何使用SDK
jinyu edited this page Dec 27, 2016
·
10 revisions
微信公众号接口实现类,包含底部菜单创建、发送消息等接口。
使用示例:
// 默认使用classpath目录下的weixin4j.properties配置的账号信息,也可以用spring注入
WeixinProxy weixinProxy = new WeixinProxy();
// 手动传入账号信息
weixinProxy = new WeixinProxy(new WeixinAccount("appid", "appsecret"),
new FileCacheStorager<Token>());
// 调用具体的API接口
User user = weixinProxy.getUser(openId);
微信支付接口实现类,包含JSAPI、刷卡等接口。
使用示例:
// 默认使用classpath目录下的weixin4j.properties配置的账号信息,也可以用spring注入
WeixinPayProxy weixinPayProxy = new WeixinPayProxy();
// 手动传入账号信息
weixinPayProxy = new WeixinPayProxy(new WeixinPayAccount("appid", "paySignKey", "mchId"));
// 调用具体的API接口
Order order = weixinPayProxy.queryOrder(idQuery);