From 6f7e297005135e1242e6ad4e5dd17e92165fc746 Mon Sep 17 00:00:00 2001 From: chen-xin-zhi <3588068430@qq.com> Date: Wed, 6 Nov 2024 19:30:19 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BF=AE=E6=94=B9=E4=BA=86=E5=88=86=E9=A1=B5?= =?UTF-8?q?=E6=9F=A5=E8=AF=A2=E8=AE=A2=E5=8D=95=E6=8E=A5=E5=8F=A3?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../controller/wx/WeChatController.java | 92 +++++++++++++++---- .../address/impl/AddressServiceImpl.java | 4 +- src/main/resources/application.yml | 3 + 3 files changed, 79 insertions(+), 20 deletions(-) diff --git a/src/main/java/com/cultural/heritage/controller/wx/WeChatController.java b/src/main/java/com/cultural/heritage/controller/wx/WeChatController.java index 5075585..6c1c324 100644 --- a/src/main/java/com/cultural/heritage/controller/wx/WeChatController.java +++ b/src/main/java/com/cultural/heritage/controller/wx/WeChatController.java @@ -2,16 +2,19 @@ package com.cultural.heritage.controller.wx; import com.alibaba.fastjson.JSON; +import com.alibaba.fastjson.JSONObject; +import com.cultural.heritage.common.BaseResponse; +import com.cultural.heritage.common.ErrorCode; +import com.cultural.heritage.common.ResultUtils; +import com.cultural.heritage.exception.BusinessException; import io.swagger.v3.oas.annotations.tags.Tag; import lombok.extern.slf4j.Slf4j; -import org.junit.Test; +import org.springframework.web.bind.annotation.PostMapping; import org.springframework.web.bind.annotation.RequestMapping; import org.springframework.web.bind.annotation.RestController; import java.io.*; import java.net.HttpURLConnection; -import java.net.MalformedURLException; -import java.net.ProtocolException; import java.net.URL; import java.util.HashMap; import java.util.Map; @@ -23,11 +26,29 @@ import java.util.Map; @Tag(name = "小程序获取公众号文章") public class WeChatController { - private String getToken() throws MalformedURLException, IOException, ProtocolException { + + @PostMapping("/getArticle") + public BaseResponse getArticleInfo() { + String result1 = null; + try { + result1 = getToken(); + Map token = JSON.parseObject(result1); + String result2 = getContentList(token.get("access_token").toString()); + JSONObject jsonObject = JSON.parseObject(result2); + System.out.println(jsonObject); + return ResultUtils.success(jsonObject); + } catch (IOException e) { + log.info("获取公众号文章信息错误"); + throw new BusinessException(ErrorCode.SYSTEM_ERROR); + } + } + + + private String getToken() throws IOException { // access_token接口https请求方式: GET https://api.weixin.qq.com/cgi-bin/token?grant_type=client_credential&appid=APPID&secret=APPSECRET String path = " https://api.weixin.qq.com/cgi-bin/token?grant_type=client_credential"; - String appid = "wx3f968a09e31d6bed"; - String secret = "847bdda7c2b01e88d59948b9ba50ef8d"; + String appid = "wx5d04ca2de0e628a8"; + String secret = "495af5bc4df1b86ffcfc21bb12daea76"; URL url = new URL(path+"&appid=" + appid + "&secret=" + secret); HttpURLConnection connection = (HttpURLConnection) url.openConnection(); connection.setRequestMethod("GET"); @@ -41,14 +62,48 @@ public class WeChatController { sb.append(new String(b,0,len)); } - System.out.println(sb.toString()); + System.out.println(sb); in.close(); return sb.toString(); } +// l2Xqw8jS3iBL3__mZ33T8TFMj_w2tnERt6rLLUAfwRP5OWzAj5BzJyhsmuMzo3GJ + +// private String getOneContent(String token) throws IOException { +// String path = " https://api.weixin.qq.com/cgi-bin/freepublish/getarticle?access_token=" + token; +// URL url = new URL(path); +// HttpURLConnection connection = (HttpURLConnection) url.openConnection(); +// connection.setRequestMethod("POST"); +// connection.setDoOutput(true); +// connection.setRequestProperty("content-type", "application/json;charset=utf-8"); +// connection.connect(); +// // post发送的参数 +// Map map = new HashMap<>(); +// map.put("article_id", "l2Xqw8jS3iBL3__mZ33T8TFMj_w2tnERt6rLLUAfwRP5OWzAj5BzJyhsmuMzo3GJ"); // news表示图文类型的素材,具体看API文档 +// // 将map转换成json字符串 +// String paramBody = JSON.toJSONString(map); // 这里用了Alibaba的fastjson +// +// OutputStream out = connection.getOutputStream(); +// BufferedWriter bw = new BufferedWriter(new OutputStreamWriter(out)); +// bw.write(paramBody); // 向流中写入参数字符串 +// bw.flush(); +// +// InputStream in = connection.getInputStream(); +// byte[] b = new byte[100]; +// int len = -1; +// StringBuffer sb = new StringBuffer(); +// while((len = in.read(b)) != -1) { +// sb.append(new String(b,0,len)); +// } +// +// in.close(); +// return sb.toString(); +// } + + private String getContentList(String token) throws IOException { - String path = " https://api.weixin.qq.com/cgi-bin/material/batchget_material?access_token=" + token; + String path = " https://api.weixin.qq.com/cgi-bin/freepublish/batchget?access_token=" + token; URL url = new URL(path); HttpURLConnection connection = (HttpURLConnection) url.openConnection(); connection.setRequestMethod("POST"); @@ -57,9 +112,9 @@ public class WeChatController { connection.connect(); // post发送的参数 Map map = new HashMap<>(); - map.put("type", "news"); // news表示图文类型的素材,具体看API文档 - map.put("offset", 0); - map.put("count", 1); + map.put("offset", 0); // news表示图文类型的素材,具体看API文档 + map.put("count", 20); + map.put("no_content", 1); // 将map转换成json字符串 String paramBody = JSON.toJSONString(map); // 这里用了Alibaba的fastjson @@ -81,14 +136,13 @@ public class WeChatController { } - @Test - public void test() throws IOException { - - String result1 = getToken(); - Map token = (Map) JSON.parseObject(result1); - String result2 = getContentList(token.get("access_token").toString()); - System.out.println(result2); - } +// @Test +// public void test() throws IOException { +// String result1 = getToken(); +// Map token = (Map) JSON.parseObject(result1); +// String result2 = getContentList(token.get("access_token").toString()); +// System.out.println(result2); +// } } diff --git a/src/main/java/com/cultural/heritage/service/address/impl/AddressServiceImpl.java b/src/main/java/com/cultural/heritage/service/address/impl/AddressServiceImpl.java index ae91a49..ce6f726 100644 --- a/src/main/java/com/cultural/heritage/service/address/impl/AddressServiceImpl.java +++ b/src/main/java/com/cultural/heritage/service/address/impl/AddressServiceImpl.java @@ -3,7 +3,6 @@ package com.cultural.heritage.service.address.impl; import com.baomidou.mybatisplus.core.conditions.query.QueryWrapper; import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl; import com.cultural.heritage.common.ErrorCode; -import com.cultural.heritage.exception.BusinessException; import com.cultural.heritage.exception.ThrowUtils; import com.cultural.heritage.mapper.AddressMapper; import com.cultural.heritage.model.entity.Address; @@ -20,6 +19,9 @@ public class AddressServiceImpl extends ServiceImpl impl Integer isDefault = address.getIsDefault(); Long userId = address.getUserId(); List
list = this.getUserAddressById(userId); + if (list.size() == 0) { + return ; + } if (isDefault == 1) { list.forEach(item -> item.setIsDefault(0)); } diff --git a/src/main/resources/application.yml b/src/main/resources/application.yml index 194ecbe..7e8a39f 100644 --- a/src/main/resources/application.yml +++ b/src/main/resources/application.yml @@ -52,3 +52,6 @@ wx: mini: appId: wx3f968a09e31d6bed appSecret: 847bdda7c2b01e88d59948b9ba50ef8d + official: + appId: wx5d04ca2de0e628a8 + appSecret: 495af5bc4df1b86ffcfc21bb12daea76 \ No newline at end of file