Jfinal weixin发送模板消息的问题
看这个类中 WeixinApiController
public void sendMsg()
我想写个公共方法发送消息怎么写,下面的方法不报错,但是收不到消息,msg组装好传过来的,
通过http://127.0.0.1:8080/jwx/api/sendMsg 这个地址能收到消息
public static ApiResult sendMsg(String msg){ ApiConfig ac = new ApiConfig(); ac.setToken(PropKit.get("token")); ac.setAppId(PropKit.get("appId")); ac.setAppSecret(PropKit.get("appSecret")); ac.setEncryptMessage(PropKit.getBoolean("encryptMessage", false)); ac.setEncodingAesKey(PropKit.get("encodingAesKey", "setting it in config file")); ApiConfigKit.setThreadLocalApiConfig(ac); return TemplateMsgApi.send(msg); }
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(6)
需要找到用户的openid,然后发送模板消息咯,不过最好不要发主动营销类的,发现了会被封的
回复
有openid,但是直接调用TemplateMsgApi.send(msg)会报错
回复
有报错根据报错找,就怕没报错的。
我是想如何从服务端主动给用户发消息
1.5之后就有了,注意一下细节,你是不是写错了。
TemplateMsgApi.send(msg);
这个入参是自己编码好的JSON字符串吧