一、前期准备
微信公众号获取用户信息前后端均可获取,前期需要配置微信公众号后台配置。本地调试需要下载微信开发者工具调试。
然后通过微信公众平台生成一个测试号,通过测试号二维码添加用户信息,然后用添加的用户扫码登录微信开发者工具调试接口获取openid或者用户信息user_info等,具体可以看微信开放文档获取想要的信息。
必须用微信开发者工具请求接口地址才能调通。
其次需要在测试号页面设置体验接口权限表中网页服务的网页帐号;测试就填域名+端口:比如:www.wanmait.com:80。
二、微信网页授权简单说明
关于网页授权的两种scope的区别说明:
snsapi_base:用户无感,静默授权
snsapi_userinfo:微信会弹窗,需要用户点击同意
一般仅仅获取openid只需要前一种类型即可。
如果用于商业,需要管理员申请开通 接口权限。
授权回调页面域名要填写正式服务器配置域名。
三、代码实现
1、获取code
第一步:用户同意授权,获取code
@RequestMapping("/login") public void wxLogin(HttpServletResponse response) throws IOException { //请求获取code的回调地址 String callBack = "http://www.wanmait.com/api/test/wechat/callBack"; //请求地址 String url = "https://open.weixin.qq.com/connect/oauth2/authorize" + "?appid=" + APP_ID + "&redirect_uri=" + URLEncoder.encode(callBack) + "&response_type=code" + "&scope=snsapi_base" + "&state=STATE#wechat_redirect"; //重定向 response.sendRedirect(url); }
2、微信回调地址
2 第二步:通过code换取网页授权access_token
// 回调方法 @RequestMapping("/callBack") public AjaxResult wxCallBack(HttpServletRequest request, HttpServletResponse response) throws IOException { String code = request.getParameter("code"); Map<String,Object> map = new HashMap<>(); //获取access_token String url = "https://api.weixin.qq.com/sns/oauth2/access_token" + "?appid=" + APP_ID + "&secret=" + APP_SECRET + "&code=" + code + "&grant_type=authorization_code"; String result = HttpClientUtil.doGet(url); JSONObject resultObject = JSON.parseObject(result); String openId = (String) resultObject.get("openid"); map.put("access_token",result); map.put("openId",openId); return AjaxResult.success(map); }
这样就能获取微信公众号当前用户openid
0条评论
点击登录参与评论