wechat icon indicating copy to clipboard operation
wechat copied to clipboard

轻量的微信公众号组件(A Lightweight Wechat Component)

Results 1 wechat issues
Sort by recently updated
recently updated
newest added

public Long sendTemplate(String accessToken, String openId, String templateId, String link, List fields) { Preconditions.checkNotNullAndEmpty(accessToken, "accessToken"); Preconditions.checkNotNullAndEmpty(openId, "openId"); Preconditions.checkNotNullAndEmpty(templateId, "templateId"); String url = "http://api.weixin.qq.com/cgi-bin/message/template/send?access_token=" + accessToken; Map params = this.buildTemplateParams(openId, templateId,...