1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35
| @Test public void setTemplateMessage(){ String url = "https://api.weixin.qq.com/cgi-bin/message/template/send?access_token=ACCESS_TOKEN"; url = url.replace("ACCESS_TOKEN",WxService.getOutToken()); String data = " {\n" + " \"touser\":\"oN04-06h0y9BUvfC87XYPvuDzlKY\",\n" + " \"template_id\":\"EKaBgMDlnBKdr3-dBTDKbe0A4KyvkA5Y9Q9qZMi4ecY\",\n" + " \"data\":{\n" + " \"first\": {\n" + " \"value\":\"您有新的反馈消息了!\",\n" + " \"color\":\"#173177\"\n" + " },\n" + " \"company\":{\n" + " \"value\":\"IT甲鱼科技公司\",\n" + " \"color\":\"#173177\"\n" + " },\n" + " \"time\": {\n" + " \"value\":\"2014年9月22日\",\n" + " \"color\":\"#173177\"\n" + " },\n" + " \"result\": {\n" + " \"value\":\"面试通过\",\n" + " \"color\":\"#173177\"\n" + " },\n" + " \"remark\":{\n" + " \"value\":\"详情请和本公司人事专员联系!\",\n" + " \"color\":\"#173177\"\n" + " }\n" + " }\n" + " }"; String result = GetAndPost.post(url,data); System.out.println(result); }
|