微信獲取用戶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();
        }
    }
相關文章
相關標籤/搜索