java微信开发(wechat4j)——得到微信请求参数

微信平台会在请求的post数据中带有一些参数,例如用户的openid之类的信息,当你使用了wechat4j之后,得到这些信息是非常方便的。

public class Lejian extends WechatSupport{
@Override
protected void onText() {
String fromUser = this.wechatRequest.getFromUserName();
}
}

上面代码中的this.wechatRequest.getFromUserName()即可以得到微信post数据中的FromUserName节点数据.

wechatRequest可以得到的post数据

wechatRequest成员方法中get的方法,名称同微信开发文档中xml形式的post数据的节点。

  • getFromUserName()
  • getContent()
  • getCreateTime()
  • getDescription()
  • getLabel()
  • getMsgId
  • getEvent()
  • getFormat()
  • getLabel()
  • getLocation_X()
  • getLocation_X()
  • getMediaId()
  • getMsgId()
  • getMsgType()
  • getPicUrl()
  • getScale()
  • getTitle()
  • getToUserName()
  • getUrl()

wechat4j框架官方文档: https://github.com/sword-org/wechat4j/wiki

上一篇:公共语言运行库(CLR)开发系列课程(3):COM Interop基础 学习笔记


下一篇:大型网站提速关键技术(页面静态化,memcached,MySql优化)(二)