首页 > 其他分享 >微信公众号开发接入

微信公众号开发接入

时间:2023-05-26 11:13:44浏览次数:49  
标签:nonce String timestamp 接入 微信 request getParameter 公众 signature

微信公众号开发

准备工作

你要有一个微信公众号,一个内网穿透工具

相关网站

需要资料

  • 服务器配置:设置与开发-->基本配置-->服务器配置
  • token:3-32字符,自己生成配置到服务器配置
  • 公网 IP:云服务器一般都有公网IP
  • 内网穿透工具:本地测试需要穿透,否则无法对接。花生壳、natapp 等自行百度

注意事项

  1. 请求URL超时,说明内网穿透有问题
  2. 微信验证消息和推送消息事件接口是同一地址,验证消息是GET请求 ,事件推送消息是POST
  3. 验证成功接口需要给微信原样返回随机字符串(echostr)内容,否则配置失败
  4. 响应类型(Content-Type) 一定要是 text/plan
  5. 切记自己对接的系统要是有权鉴,一定要放行微信消息验证接口

代码示例

消息验证

public void pushGet(HttpServletRequest request, HttpServletResponse response) {
    String signature = request.getParameter("signature"); // 签名
    String echostr = request.getParameter("echostr"); // 随机字符串
    String timestamp = request.getParameter("timestamp"); // 时间戳
    String nonce = request.getParameter("nonce"); // 随机数
    log.debug("signature:{}", signature);
    log.debug("echostr:{}", echostr);
    log.debug("timestamp:{}", timestamp);
    log.debug("nonce:{}", nonce);
    System.out.println("signature:" + signature);
    String sha1 = getSHA1(token, timestamp, nonce);
    System.out.println("sha1:" + sha1);
    if (sha1.equals(signature)) {
        log.debug("成功");
        this.responseText(echostr, response);
    }
}

事件推送

public void pushPost(HttpServletRequest request, HttpServletResponse response) {
    String signature = request.getParameter("signature"); // 签名
    String timestamp = request.getParameter("timestamp"); // 时间戳
    String nonce = request.getParameter("nonce"); // 随机数
    String sha1 = getSHA1(token, timestamp, nonce);
    if (sha1.equals(signature)) {
        Map<String, Object> map = null;
        try {
            map = XmlUtil.parseXMLToMap(request.getInputStream());
        } catch (IOException e) {
            e.printStackTrace();
        }
        log.debug("事件消息体:{}", map);

        this.responseText("", response); // 回复空串,微信服务器不会对此作任何处理
    }

}

完整代码

import io.swagger.annotations.Api;
import io.swagger.annotations.ApiOperation;
import lombok.extern.slf4j.Slf4j;
import org.springframework.web.bind.annotation.*;

import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;
import java.io.IOException;
import java.io.PrintWriter;
import java.security.MessageDigest;
import java.util.*;

/**
 * @description: 微信配置
 * @author: Mr.Fang
 * @create: 2023-05-26
 **/
@Api(tags = "微信配置")
@Slf4j
@RestController
@RequestMapping("/wx/")
public class WxController {

    String token="78******23";

    @ApiOperation(value = "微信 token URL 验证")
    @GetMapping(value = "push")
    public void pushGet(HttpServletRequest request, HttpServletResponse response) {
        String signature = request.getParameter("signature"); // 签名
        String echostr = request.getParameter("echostr"); // 随机字符串
        String timestamp = request.getParameter("timestamp"); // 时间戳
        String nonce = request.getParameter("nonce"); // 随机数
        log.debug("signature:{}", signature);
        log.debug("echostr:{}", echostr);
        log.debug("timestamp:{}", timestamp);
        log.debug("nonce:{}", nonce);
        System.out.println("signature:" + signature);
        String sha1 = getSHA1(token, timestamp, nonce);
        System.out.println("sha1:" + sha1);
        if (sha1.equals(signature)) {
            log.debug("成功");
            this.responseText(echostr, response);
        }
    }

    @ApiOperation(value = "接收微信事件")
    @PostMapping(value = "push")
    public void pushPost(HttpServletRequest request, HttpServletResponse response) {
        String signature = request.getParameter("signature"); // 签名
        String timestamp = request.getParameter("timestamp"); // 时间戳
        String nonce = request.getParameter("nonce"); // 随机数
        String sha1 = getSHA1(token, timestamp, nonce);
        if (sha1.equals(signature)) {
            Map<String, Object> map = null;
            try {
                // input 流返回是 xml 格式 这里转 map 了
                map = XmlUtil.parseXMLToMap(request.getInputStream());
            } catch (IOException e) {
                e.printStackTrace();
            }
            log.debug("事件消息体:{}", map);

            this.responseText("", response); // 回复空串,微信服务器不会对此作任何处理
        }

    }

    /**
     * 返回响应结果
     *
     * @param text     响应内容
     * @param response
     */
    public void responseText(String text, HttpServletResponse response) {
        response.setCharacterEncoding("UTF-8");
        response.setContentType("text/plan;charset=UTF-8");
        PrintWriter writer = null;
        try {
            writer = response.getWriter();
        } catch (IOException e) {
            e.printStackTrace();
        }
        writer.write(text);
        writer.flush();
        writer.close();
    }

    /**
     * 用SHA1算法生成安全签名
     *
     * @param token     票据
     * @param timestamp 时间戳
     * @param nonce     随机字符串
     * @return 安全签名
     */
    public String getSHA1(String token, String timestamp, String nonce) {
        try {
            String[] array = new String[]{token, timestamp, nonce};
            StringBuffer sb = new StringBuffer();
            // 字符串排序
            Arrays.sort(array);
            for (int i = 0; i < 3; i++) {
                sb.append(array[i]);
            }
            String str = sb.toString();
            // SHA1签名生成
            MessageDigest md = MessageDigest.getInstance("SHA-1");
            md.update(str.getBytes());
            byte[] digest = md.digest();

            StringBuffer hexstr = new StringBuffer();
            String shaHex = "";
            for (int i = 0; i < digest.length; i++) {
                shaHex = Integer.toHexString(digest[i] & 0xFF);
                if (shaHex.length() < 2) {
                    hexstr.append(0);
                }
                hexstr.append(shaHex);
            }
            return hexstr.toString();
        } catch (Exception e) {
            e.printStackTrace();
        }
        return null;
    }

}

响应结果

消息验证

signature:207e05105427e1203e769245b3860212c0ffcc56
echostr:5692172970033782203
timestamp:1685068850
nonce:499790541
signature:207e05105427e1203e769245b3860212c0ffcc56
sha1:207e05105427e1203e769245b3860212c0ffcc56
成功

事件推送

打开公众号发送消息,接口就可以获取到推送事件消息内容了

{"Content":"嘻嘻嘻","CreateTime":"1685068967","ToUserName":"gh_2121212a95","FromUserName":"333333333nSg8OlaSuB0d-f8FKZo","MsgType":"text","MsgId":"24124387253374797"}

其他信息

公众号配置

内网穿透

标签:nonce,String,timestamp,接入,微信,request,getParameter,公众,signature
From: https://www.cnblogs.com/bxmm/p/17434191.html

相关文章

  • ZIM|一站式接入,打通 RTC 和 IM 组合拳
     从用户信息、用户心跳到用户间私人与聊天室通信,IM一直是互联网世界中不可或缺的基础建设之一。早在连麦和直播诞生之前,IM就已是在通讯领域内服役多年的老兵,而随着线上音视频的兴起,IM不仅没有没落,反而作为音视频互动的有力支撑,继续扮演着至关重要的角色。 时至今日,IM作......
  • GPT虚拟直播Demo系列(一)|GPT接入直播间实现主播与观众互动
    摘要ChatGPT和元宇宙都是当前数字化领域中非常热门的技术和应用。结合两者的优势和特点,可以探索出更多的应用场景和商业模式。例如,在元宇宙中使用ChatGPT进行自然语言交互,可以为用户提供更加智能化、个性化的服务和支持;在ChatGPT中使用元宇宙进行虚拟现实体验,可以为用户提供更加真......
  • python 发送微信消息
    python自动化,可以模拟键盘输入,因此,可以控制微信,发送消息,代码如下:1importsys2importpyautogui3importpyperclip4importtime5importconfigparser67"""8安装依赖:9pipinstallpyautoguipyperclippyinstaller1011打包成exe:12pyins......
  • 微信小程序授权登录
    需要的数据库字段:openid,nickName,session_key 需要Token,去官网现在jwt的扩展JSONWebTokenLibraries-jwt.io在app下面创建一个server目录接着新建一个Token类下面是封装Token的代码<?phpnamespaceApp\server;useFirebase\JWT\JWK;useFirebase\JWT\JWT;class......
  • Sentry项目接入规范
    介绍Sentry是一个实时事件日志记录和汇集的平台。其专注于错误监控以及提取一切事后处理所需信息而不依赖于麻烦的用户反馈。它分为客户端和服务端,客户端(目前客户端有C#,Python,PHP,JavaScript,Ruby等多种语言)就嵌入在你的应用程序中间,程序出现异常就向服务端发送消息,服......
  • 微信小程序点击按钮进行页面跳转
    下面是wxml代码<buttontype="primary"bindtap="go">跳转到list页面</button>下面是js代码go:function(){wx.navigateTo({url:'/pages/list/list',})},......
  • C#-微信平台SDK有哪些?
    1、Senparc.Weixin(WeixinMPSDK):  盛派C#微信SDK,开源;提供了微信公众平台(订阅号+服务号+小程序+小游戏+小商店+视频号)、企业微信、小程序、微信支付等多个平台的API封装,支持.NETFramework和.NETCore。2、SKIT.FlurlHttpClient.Wechat(SKIT):  封装全部已知的微信API,包......
  • 微信小程序+百度获取用户当前所在位置
    微信小程序通过 wx.getLocation获取所在的gps坐标在通过百度线上转换代码转成文字版地址百度控制台->应用管理->我的应用 https://api.map.baidu.com/reverse_geocoding/v3/?ak=你的keyG&output=json&coordtype=wgs84ll&location=${latitude},${longitude}别忘了去小程......
  • “提高微信小程序曝光率的关键策略”,让你的小程序被更多人发现!
    很高兴听到您关注微信小程序的曝光率策略。以下是一些关键策略,可以帮助提高小程序的曝光率:优化小程序SEO首先要建立一个专业、系统的SEO策略,包括小程序标题、关键词、描述等,这些关键部分可以让搜索引擎更好的了解小程序的优势和特点,同时为搜索用户提供更好的搜索结果。注重用户体验......
  • 边缘计算AI硬件智能分析网关V1版的接入流程与使用步骤
    我们的AI边缘计算网关硬件——智能分析网关目前有两个版本:V1版与V2版,两个版本都能实现对监控视频的智能识别和分析,支持抓拍、记录、告警等,在AI算法的种类上和视频接入上,两个版本存在些许的区别。V1的基础算法有人体检测、区域入侵检测、戴口罩识别、安全帽识别;V2目前有15种算法,包括......