大家好,又见面了,我是你们的朋友全栈君。
微信第三方登录准备阶段
准备工作
在进行第三方授权登录之前,需要在微信开放平台注册开发者账号,拿到相应的AppId和AppSecret以及redirect_uri,即可进行授权接入流程
授权流程说明
整体流程分:
1. 第三方发起微信授权登录请求,微信用户允许授权第三方应用后,微信会拉起应用或重定向到第三方网站,并且带上授权临时票据code参数;
2. 通过code参数加上AppID和AppSecret等,通过API换取access_token;
3. 通过access_token进行接口调用,获取用户基本数据资源或帮助用户实现基本操作。
第一步:请求code
根据参数访问链接获取授权信息
用户允许授权后,将会重定向到redirect_uri的网址上,并且带上code和state参数;
若用户禁止授权,则重定向后不会带上code参数,仅会带上state参数
String oauthUrl = "https://open.weixin.qq.com/connect/qrconnect?appid=APPID&redirect_uri=REDIRECT_URI&response_type=code&scope=SCOPE&state=STATE#wechat_redirect";
String redirect_uri = URLEncoder.encode(WXConfig.CALLBACK, "utf-8");
oauthUrl = oauthUrl.replace("APPID", WXConfig.PC_JSID).replace("REDIRECT_URI", redirect_uri).replace("SCOPE", WXConfig.SCOPE);
model.addAttribute("oauthUrl", oauthUrl);
model.addAttribute("appid", WXConfig.PC_JSID);
model.addAttribute("scope", WXConfig.SCOPE);
model.addAttribute("redirect_uri", redirect_uri);
前端通过回调链接生成二维码:
第二步:通过code获取access_tokeen
https://api.weixin.qq.com/sns/oauth2/access_token?appid=APPID&secret=SECRET&code=CODE&grant_type=authorization_code
第三步:通过access_token调用接口
获取access_token后,进行接口调用,有以下前提:
1. access_token有效且未超时;
2. 微信用户已授权给第三方应用帐号相应接口作用域(scope)。
获取用户个人信息:
授权作用域(scope) | 接口 |
---|---|
snsapi_userinfo | /sns/userinfo |
参考代码:
public Map<String, String> pcCode2Session(String js_code) throws UnsupportedEncodingException {
//1.通过code获取access_token
String url = WXConstants.DOMAIN_API + WXConstants.OAUTH2_URL_SUFFIX
+ "?appid=" + WXConfig.PC_JSID + "&secret="
+ WXConfig.PC_JSSECRET + "&code="
+ js_code + "&grant_type=authorization_code";
String result = restTemplate.getForObject(url, String.class);
if (result != null && result.trim().length() != 0) {
JSONObject json = JSONObject.parseObject(result);
Integer code = json.getInteger("errcode");
if (code == null || code == WXConstants.SUCCESS) {
//获取access_token
Map<String, String> map = new HashMap<>();
map.put("access_token", json.getString("access_token"));
map.put("expires_in", json.getString("expires_in"));
map.put("refresh_token", json.getString("refresh_token"));
map.put("openid", json.getString("openid"));
map.put("scope", json.getString("scope"));
map.put("unionid", json.getString("unionid"));
//通过access_token和openid获取用户个人信息(头像、昵称)
String url_user = WXConstants.DOMAIN_API + WXConstants.USERINFO_URL_SUFFIX
+ "?access_token=" + json.getString("access_token") + "&openid="
+ json.getString("openid");
String result_user = restTemplate.getForObject(url_user, String.class);
result_user = new String(result_user.getBytes("ISO-8859-1"), "UTF-8");
System.out.println("--------result2="+result_user);
if (result_user != null && result_user.trim().length() != 0) {
JSONObject json_user = JSONObject.parseObject(result_user);
Integer code_user = json_user.getInteger("errcode");
System.out.println("======="+code_user);
if (code_user == null || code_user == WXConstants.SUCCESS) {
//用户头像url
map.put("headimgurl", json_user.getString("headimgurl"));
//用户昵称
map.put("nickname", json_user.getString("nickname"));
}
}
return map;
} else {
LOGGER.error("微信JSAPI请求失败:{}", result);
}
} else {
LOGGER.error("微信JSAPI请求失败:null");
}
return null;
}
注:未调用刷新access_token有效期,因为项目中已经做了超时处理
发布者:全栈程序员-用户IM,转载请注明出处:https://javaforall.cn/131603.html原文链接:https://javaforall.cn
【正版授权,激活自己账号】: Jetbrains全家桶Ide使用,1年售后保障,每天仅需1毛
【官方授权 正版激活】: 官方授权 正版激活 支持Jetbrains家族下所有IDE 使用个人JB账号...