通过java方式获取微信用户openId

通过java方式获取微信用户openId

0.先熟悉微信网页授权流程

https://developers.weixin.qq.com/doc/offiaccount/OA_Web_Apps/Wechat_webpage_authorization.html

1.内网穿透

目的:使本地的服务能在微信客户端进行访问

1.购买隧道

https://natapp.cn/tunnel/buy
在这里插入图片描述

2.进行配置

配置域名,ip和端口。在这里配本地可以访问的服务的ip和端口。

在这里插入图片描述

3 下载客户端

在这里插入图片描述

3 打开命令行在客户端同级目录执行:natapp -authtoken=xxxxxxxxxx,使隧道服务上线

在这里插入图片描述在这里插入图片描述

2.注册微信公众平台测试账号

1.进入系统注册测试账号

在这里插入图片描述

2.扫码关注

在这里插入图片描述

3.绑定域名


填写上一步绑定的域名
在这里插入图片描述
到这里就可以实现在微信端对本地服务进行调用

3.代码实现

    @RequestMapping("/getCodeAndOpenId")
    public WxInfo getCodeAndOpenId(@RequestParam("code") String code) {
        log.info("==> 先获取code,再获取openid 。code={}", code);
        Map params = new HashMap();
        params.put("appid", "wxb00b277049d87059");
        params.put("secret", "4f407849f4b50854ff6fbec3cc3d28a6");
        params.put("grant_type", "authorization_code");
        params.put("code", code);
        String result = HttpGetUtil.httpRequestToString(
                "https://api.weixin.qq.com/sns/oauth2/access_token", params);
        WxInfo wxInfo = new WxInfo();
        if (result != null) {
            JSONObject jsonObject = JSONObject.parseObject(result);
            String openid = jsonObject.get("openid").toString();
            log.info("==> 获取的 openid={}", openid);

            wxInfo.setCode(code);
            wxInfo.setOpenid(openid);
        }
        return wxInfo;
    }

说明:用户在微信端点击链接:
https://open.weixin.qq.com/connect/oauth2/authorize?redirect_uri=http://niki.nat300.top/getCodeAndOpenId&appid=wxb00b277049d87059&response_type=code&scope=snsapi_base&state=1#wechat_redirect
后,会携带code跳转到 http://niki.nat300.top/getCodeAndOpenId,即执行getCodeAndOpenId方法
这个方法会根据code去获取openid

3.在微信端访问授权页面

在微信端任意一个窗口打开
在这里插入图片描述

4.返回结果

微信页面上返回了openid
在这里插入图片描述
在这里插入图片描述

5.总结

根据开发文档描述https://open.weixin.qq.com/connect/oauth2/authorize?appid=APPID&redirect_uri=REDIRECT_URI&response_type=code&scope=SCOPE&state=STATE#wechat_redirect,在访问这个授权页面后,需要跳转到最终真是访问的页面,实际上不需要,只需要是一个方法就行,而如果这个方法正好是获取openid的,那么正好顺势获取code,只需要通过一个方法就能获得openid。

6.工具类

public class HttpGetUtil {

    public static String httpRequestToString(String url, Map<String, String> params) {
        String result = null;
        try {
            InputStream is = httpRequestToStream(url, params);
            BufferedReader in = new BufferedReader(new InputStreamReader(is,
                    "UTF-8"));
            StringBuffer buffer = new StringBuffer();
            String line = "";
            while ((line = in.readLine()) != null) {
                buffer.append(line);
            }
            result = buffer.toString();
        } catch (Exception e) {
            return null;
        }
        return result;
    }

    private static InputStream httpRequestToStream(String url, Map<String, String> params) {
        InputStream is = null;
        try {
            if (!(params == null)) {
                String parameters = "";
                boolean hasParams = false;
                for (String key : params.keySet()) {
                    String value = URLEncoder.encode(params.get(key), "UTF-8");
                    parameters += key + "=" + value + "&";
                    hasParams = true;
                }
                if (hasParams) {
                    parameters = parameters.substring(0, parameters.length() - 1);
                }

                url += "?" + parameters;
            }


            URL u = new URL(url);
            HttpURLConnection conn = (HttpURLConnection) u.openConnection();
            conn.setRequestProperty("Content-Type", "application/x-www-form-urlencoded");
            conn.setRequestProperty("Accept-Charset", "UTF-8");
            conn.setRequestProperty("contentType", "utf-8");
            conn.setConnectTimeout(50000);
            conn.setReadTimeout(50000);
            conn.setDoInput(true);
            //设置请求方式,默认为GET
            conn.setRequestMethod("GET");

            is = conn.getInputStream();
        } catch (UnsupportedEncodingException e) {
            e.printStackTrace();
        } catch (MalformedURLException e) {
            e.printStackTrace();
        } catch (IOException e) {
            e.printStackTrace();
        }
        return is;
    }
}

7.后续改进

1.需要在中间(虚拟)页面判断访问渠道
2.如果是微信则需要通过授权链接跳转到明细保存接口
3.否则直接跳转到明细保存接口

    @RequestMapping("/share/middle")
    public String middle(HttpServletRequest request, HttpServletResponse response) throws IOException {
        String userAgent = request.getHeader("user-agent").toLowerCase();
        if (userAgent.indexOf("micromessenger") != -1) {
            log.info("==>用户访问的方式是微信渠道");
            response.sendRedirect("https://open.weixin.qq.com/connect/oauth2/authorize?redirect_uri=http://niki.nat300.top/saveAccessDetail&appid=wxb00b277049d87059&response_type=code&scope=snsapi_base&state=1#wechat_redirect");
        } else {
            log.info("==>用户访问的方式是其他渠道");
            response.sendRedirect("http://niki.nat300.top/saveAccessDetail?code=123");
        }
        return "";
    }
    @RequestMapping("/saveAccessDetail")
    public WxInfo saveAccessDetail(HttpServletRequest request, @RequestParam("code") String code) {
        String userAgent = request.getHeader("user-agent").toLowerCase();
        WxInfo wxInfo = new WxInfo();

        if (userAgent.indexOf("micromessenger") != -1) {
            log.info("==>用户访问的方式是微信");


            log.info("==> 先获取code,再获取openid 。code={}", code);
            Map params = new HashMap();
            params.put("appid", "wxb00b277049d87059");
            params.put("secret", "4f407849f4b50854ff6fbec3cc3d28a6");
            params.put("grant_type", "authorization_code");
            params.put("code", code);
            String result = HttpGetUtil.httpRequestToString(
                    "https://api.weixin.qq.com/sns/oauth2/access_token", params);
            if (result != null) {
                JSONObject jsonObject = JSONObject.parseObject(result);
                String openid = jsonObject.get("openid").toString();
                log.info("==> 获取的 openid={}", openid);

                wxInfo.setCode(code);
                wxInfo.setOpenid(openid);
            }
        }
        log.info("==>执行存入redis操作");
        response.sendRedirect("https://www.apache.org/");
        log.info("==>跳转到最终实际访问的页面。。。。。。。。。。。。。。");
        return wxInfo;
    }

要在Java获取openid和session_key,您需要使用微信提供的小程序登录API。您可以通过调用以下API获取openid和session_key: ```java String appId = "yourAppId"; String secret = "yourAppSecret"; String jsCode = "wx.login()获取到的code"; String url = "https://api.weixin.qq.com/sns/jscode2session?appid=" + appId + "&secret=" + secret + "&js_code=" + jsCode + "&grant_type=authorization_code"; HttpClient client = new HttpClient(); GetMethod method = new GetMethod(url); client.executeMethod(method); String response = method.getResponseBodyAsString(); JSONObject jsonObject = JSONObject.parseObject(response); String openid = jsonObject.getString("openid"); String sessionKey = jsonObject.getString("session_key"); ``` 要解密用户私密数据(UnionId或手机号),您需要使用微信提供的AES解密算法。以下是示例代码: ```java String iv = "yourIv"; String encryptedData = "用户加密数据"; String sessionKey = "从上面获取到的session_key"; try { byte[] content = Base64.decodeBase64(encryptedData); byte[] keyByte = Base64.decodeBase64(sessionKey); byte[] ivByte = Base64.decodeBase64(iv); SecretKeySpec keySpec = new SecretKeySpec(keyByte, "AES"); AlgorithmParameterSpec ivSpec = new IvParameterSpec(ivByte); Cipher cipher = Cipher.getInstance("AES/CBC/PKCS5Padding"); cipher.init(Cipher.DECRYPT_MODE, keySpec, ivSpec); byte[] decryptedByte = cipher.doFinal(content); String decryptedData = new String(decryptedByte, "UTF-8"); JSONObject jsonObject = JSONObject.parseObject(decryptedData); String unionId = jsonObject.getString("unionId"); String phoneNumber = jsonObject.getString("phoneNumber"); } catch (Exception e) { e.printStackTrace(); } ``` 请注意,您需要在小程序后台配置您的加密算法参数,以便正确解密用户数据。此外,获取用户的UnionId需要您的小程序具有获取UnionId的权限。
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值