微信小程序,公众号发送模板消息
小程序发送模板消息和公众号有一点不同的可能就是小程序需要一个form_id,这个是发起支付或者提交表单的时候才能获取到,提交表单得到的formId有效期7天且只能用一次,支付获得的预订单Id可以使用三次,公众号则不需要,不过小程序的模板消息是在‘服务通知’栏目里,公众号的模板消息是在公众号对话框里,直接上代码了
先需要封装一个将需要发送给用户的信息转换成json的方法
/** * @method packJsonmsg * @参数@param first 头部 * @参数@param remark 说明 * @参数@return * @返回类型:JSONObject */public JSONObject JsonMsg(){JSONObject json = new JSONObject();try {JSONObject jsonFirst = new JSONObject();jsonFirst.put("value", "xxxx");jsonFirst.put("color", "#173177");json.put("first", jsonFirst);/** * 信息部分JSON */JSONObject k1 = new JSONObject();k1.put("value", “xx”);k1.put("color", "#173177");json.put("keyword1", k1);JSONObject k2 = new JSONObject();k2.put("value", “xx”);k2.put("color", "#173177");json.put("keyword2", k2);//具体模板消息有几个参数就写几个 可查看小程序后台模板消息JSONObject jsonRemark = new JSONObject();jsonRemark.put("value", "xxxxx");jsonRemark.put("color", "#173177");json.put("Remark", jsonRemark);} catch (JSONException e) {e.printStackTrace();}return json;}封装好主要信息就可以发送了
/** * @method sendWechatmsgToUser * @描述: TODO(发送模板信息给用户) * @参数@param touser 用户的openid * @参数@param templat_id 信息模板id * @参数@param url 用户点击详情时跳转的url * @参数@param topcolor 模板字体的颜色 * @参数@param data 模板详情变量 Json格式 * @参数@return * @返回类型:String */public String sendWechatmsgToUser(){String tmpurl = "https://api.weixin.qq.com/cgi-bin/message/wxopen/template/send?access_token=ACCESS_TOKEN";//公众号的发送模板消息连接是:https://api.weixin.qq.com/cgi-bin/message/template/send?access_token=accessToken换成自己公众号的就好String accessToken="";//获取的accessToken 有效期为2小时 可以存储在库中,定时更新JSONObject json = new JSONObject();try {json.put("touser", openId);//所要发送的用户openIdjson.put("template_id", "xxx小程序后台的模板Id");json.put("page", "pages/index/index");//点击模板可以跳转到小程序的具体界面json.put("form_id", formId);//用户的fromId或者预订单Idjson.put("topcolor", "#173177");json.put("data", data);//这个data可以直接调用上文的JsonMsg方法生成所需要发送给用户的信息} catch (JSONException e) {e.printStackTrace();}/*公众号模板消息在发送给微信服务器的信息和小程序有一些不一样json.put("miniprogram", “此处json对象中放入小程序的appid和具体界面地址如:pages/index/index 点击模板消息是可以直接进入小程序”);json.put("url", "此处填写的url可以跳转到需要连接的地址,如果是支付的模板消息就可以跳转到该用户的支付详情");*///http带上json文件发起请求百度一下很多 下文也放一个String result = httpsRequest(url, "POST", json.toString());try {JSONObject resultJson = JSON.parseObject(result);System.out.println("模板消息返回数据:"+resultJson);String errmsg = (String) resultJson.get("errmsg");if(!"ok".equals(errmsg)){ //如果为errmsg为ok,则代表发送成功,公众号推送信息给用户了。return "error";}} catch (JSONException e) {e.printStackTrace();}return "success";}http携带json请求
/** * http请求方法 * @param requestUrl * @param requestMethod * @param outputStr * @return */public String httpsRequest(String requestUrl, String requestMethod, String outputStr){try {URL url = new URL(requestUrl);HttpsURLConnection conn = (HttpsURLConnection) url.openConnection();conn.setDoOutput(true);conn.setDoInput(true);conn.setUseCaches(false);// 设置请求方式(GET/POST)conn.setRequestMethod(requestMethod);conn.setRequestProperty("content-type", "application/x-www-form-urlencoded");// 当outputStr不为null时向输出流写数据if (null != outputStr) {OutputStream outputStream = conn.getOutputStream();// 注意编码格式outputStream.write(outputStr.getBytes("UTF-8"));outputStream.close();}// 从输入流读取返回内容InputStream inputStream = conn.getInputStream();InputStreamReader inputStreamReader = new InputStreamReader(inputStream, "utf-8");BufferedReader bufferedReader = new BufferedReader(inputStreamReader);String str = null;StringBuffer buffer = new StringBuffer();while ((str = bufferedReader.readLine()) != null) {buffer.append(str);}// 释放资源bufferedReader.close();inputStreamReader.close();inputStream.close();inputStream = null;conn.disconnect();return buffer.toString();} catch (ConnectException ce) {System.out.println("连接超时:{}");} catch (Exception e) {System.out.println("https请求异常:{}");}return null;}记录模板消息发送方式













