微信获取用户openid

Posted 猥琐熊花子酱

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了微信获取用户openid相关的知识,希望对你有一定的参考价值。

   @GetMapping({"/getOpenId"})
    public void getOpenId(HttpServletResponse response)
    {
        try
        {
            StringBuffer sb = new StringBuffer();
            try
            {
                sb.append("https://open.weixin.qq.com/connect/oauth2/authorize?appid=***************&redirect_uri=").append(URLEncoder.encode("http://********授权地址*******/wechat/login", "utf-8"));
                sb.append("&response_type=code&scope=snsapi_userinfo&state=2#wechat_redirect");
            }
            catch (UnsupportedEncodingException localUnsupportedEncodingException) {}
            response.sendRedirect(sb.toString());
        }
        catch (Exception e)
        {
            e.printStackTrace();
        }
    }

以上是关于微信获取用户openid的主要内容,如果未能解决你的问题,请参考以下文章

如何获取微信用户openid

如何获取微信用户openid

微信小程序-获取用户信息和openid,session_key,

微信小程序获取用户openid

微信绑定用户服务端代码-根据code获取openId然后绑定用户

微信链接怎么获取用户openid