NutzCN Logo
问答 nutzwx发送模板消息 有个地方看下是不是写错了
发布于 1179天前 作者 yuffo 1000 次浏览 复制 上一个帖子 下一个帖子
标签:

nutzwx里面的
org.nutz.weixin.impl.WxApi2Impl这个类
template_send的miniprogram少了个引号 我看github上的最新代码是287行

 @Override
    public WxResp template_send(String touser,
                                String template_id,
                                String url,
                                Map<String, Object> miniprogram,
                                Map<String, WxTemplateData> data) {
        return postJson("/message/template/send",
                        "touser",
                        touser,
                        "template_id",
                        template_id,
                        "url",
                        url,
                        miniprogram,
                        miniprogram,
                        "data",
                        data);
    }
1 回复

应该是bug,已fixed,谢谢。以后提bug请在项目开源仓库发 issue

添加回复
请先登陆
回到顶部