码迷,mamicode.com
首页 > 微信 > 详细

微信获取用户openid

时间:2019-01-07 17:30:48      阅读:153      评论:0      收藏:0      [点我收藏+]

标签:ack   stack   授权   try   openid   append   new   http   top   

   @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

标签:ack   stack   授权   try   openid   append   new   http   top   

原文地址:https://www.cnblogs.com/AngeLeyes/p/10233895.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!