欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

微信网页授权登录java后台实现

程序员文章站 2022-04-03 08:54:46
...

建议先阅读微信开发-网页授权登录官方文档:

https://developers.weixin.qq.com/doc/offiaccount/OA_Web_Apps/Wechat_webpage_authorization.html

1、第一步:用户同一授权,获取code

​ 前台请求链接:https://open.weixin.qq.com/connect/oauth2/authorize?appid=APPID&redirect_uri=REDIRECT_URI&response_type=code&scope=SCOPE&state=STATE#wechat_redirect
获取code

​ 参数说明:

参数 是否必须 说明
appid 公众号的唯一标识
redirect_uri 授权后重定向的回调链接地址, 请使用 urlEncode 对链接进行处理
response_type 返回类型,请填写code
scope 应用授权作用域,snsapi_base (不弹出授权页面,直接跳转,
只能获取用户openid),snsapi_userinfo (弹出授权页面,
可通过openid拿到昵称、性别、所在地。并且, 即使在未关
注的情况下,只要用户授权,也能获取其信息 )
state 重定向后会带上state参数,开发者可以填写a-zA-Z0-9的参数值,最多128字节
#wechat_redirect 无论直接打开还是做页面302重定向时候,必须带此参数

​ 如果用户同意授权,页面将跳转至 redirect_uri/?code=CODE&state=STATE。

​ scope参数有两种,snsapi_base 和 snsapi_userinfo

  • snsapi_base:静默方式,用户感知为0,无需用户手动点击认证按钮,但是只能获取用户openid 和 unionid,
  • snsapi_userinfo:非静默方式,可以获取到openid、昵称、头像、所在地等信息。需要用户手动点击认证按钮

2 第二步:通过code换取网页授权

​ 获取code后,请求以下链接获取access_token: https://api.weixin.qq.com/sns/oauth2/access_token?appid=APPID&secret=SECRET&code=CODE&grant_type=authorization_code

​ 参数说明:

参数 是否必须 说明
appid 公众号的唯一标识
secret 公众号的appsecret
code 填写第一步获取的code参数
grant_type 填写为authorization_code

​ 返回说明:

​ 正确时返回的JSON数据包如下:

{
  "access_token":"ACCESS_TOKEN", //网页授权接口调用凭证,注意:此access_token与基础支持的access_token不同
  "expires_in":7200,	//access_token接口调用凭证超时时间,单位(秒)
  "refresh_token":"REFRESH_TOKEN",	//用户刷新access_token
  "openid":"OPENID",	//用户唯一标识
  "scope":"SCOPE",	//用户授权的作用域,使用逗号(,)分隔
  "unionid": "UNIONID"	//unionid
}

​ 错误时返回的JSON数据(示例为code无效错误)

{
  "errcode":40029,
 	"errmsg":"invalid code"
}

​ 此处的access_token是特殊的网页授权的access_token, 与基础调用接口的access_token不同,

​ snsapi_base式的网页授权流程即到此为止。

3 第三步:刷新access_token(如果需要)

​ 由于access_token拥有较短的有效期,当access_token超时后,可以使用refresh_token进行刷新,refresh_token有效期为30天,当refresh_token失效之后,需要用户重新授权。

请求方法

获取第二步的refresh_token后,请求以下链接获取access_token: https://api.weixin.qq.com/sns/oauth2/refresh_token?appid=APPID&grant_type=refresh_token&refresh_token=REFRESH_TOKEN

参数 是否必须 说明
appid 公众号的唯一标识
grant_type 填写为refresh_token
refresh_token 填写通过access_token获取到的refresh_token参数

返回格式与第二步一致

4 第四步:拉取用户信息(需scope为 snsapi_userinfo)

如果网页授权作用域为snsapi_userinfo,则此时开发者可以通过access_token和openid拉取用户信息了。

请求方法

http:GET(请使用https协议) https://api.weixin.qq.com/sns/userinfo?access_token=ACCESS_TOKEN&openid=OPENID&lang=zh_CN

参数说明

参数 描述
access_token 网页授权接口调用凭证,注意:此access_token与基础支持的access_token不同
openid 用户的唯一标识
lang 返回国家地区语言版本,zh_CN 简体,zh_TW 繁体,en 英语

返回说明

正确时返回的JSON数据包如下:

{   
  "openid":" OPENID",
  "nickname": NICKNAME,
  "sex":"1",
  "province":"PROVINCE",
  "city":"CITY",
  "country":"COUNTRY",
  "headimgurl":       "http://thirdwx.qlogo.cn/mmopen/g3MonUZtNHkdmzicIlibx6iaFqAc56vxLSUfpb6n5WKSYVY0ChQKkiaJSgQ1dZuTOgvLLrhJbERQQ4eMsv84eavHiaiceqxibJxCfHe/46",
  "privilege":[ "PRIVILEGE1" "PRIVILEGE2"     ],
  "unionid": "o6_bmasdasdsad6_2sgVt7hMZOPfL"
}
参数 描述
openid 用户的唯一标识
nickname 用户昵称
sex 用户的性别,值为1时是男性,值为2时是女性,值为0时是未知
province 用户个人资料填写的省份
city 普通用户个人资料填写的城市
country 国家,如中国为CN
headimgurl 用户头像,最后一个数值代表正方形头像大小(有0、46、64、96、132数值可选,0代表640*640正方形头像),用户没有头像时该项为空。若用户更换头像,原有头像URL将失效。
privilege 用户特权信息,json 数组,如微信沃卡用户为(chinaunicom)
unionid 只有在用户将公众号绑定到微信开放平台帐号后,才会出现该字段。

错误时微信会返回JSON数据包如下(示例为openid无效):

{"errcode":40003,"errmsg":" invalid openid "}

回调示例:

@ApiOperation(value = "微信网页授权", response = SessionUserInfo.class)
@RequestMapping(value = "/web/page/auth", method = RequestMethod.GET)
public JSONObject webPageAuth(String code, String state) throws Exception {
    if (StringUtils.isEmpty(code)) {
        return Response.fail("登录失败");
    }

    SessionUserInfo sessionUserInfo = new SessionUserInfo();
    PcWechatAccessToken pcWechatAccessToken = new PcWechatAccessToken();
  	//pcWechatAccessToken封装的实体对象
  	//subAppId公共号appid
  	//subAppSercet公共号的appsecret
  	//code传入的第一步获取的code参数
    pcWechatAccessToken.setAppId(subAppId);
    pcWechatAccessToken.setAppSerect(subAppSercet);
    pcWechatAccessToken.setCode(code);
    Boolean wechatLogin = usersService.wechatLogin(pcWechatAccessToken);
    if (wechatLogin) {
        return Response.succ("登录成功");
    } else {
        return Response.fail("登录失败");
    }
}

wechatLogin示例代码:

/**
 * 微信网页授权登录
 *
 * @param pcWechatAccessToken pcWechatAccessToken
 */
@Override
public Boolean wechatLogin(PcWechatAccessToken pcWechatAccessToken, SessionUserInfo sessionUserInfo) {
  	//accessUrl=https://api.weixin.qq.com/sns/oauth2/access_token?appid=%s&secret=%s&code=%s&grant_type=authorization_code
    String access_Url = String.format(accessUrl, pcWechatAccessToken.getAppId(), pcWechatAccessToken.getAppSerect(), pcWechatAccessToken.getCode());

    try {
        String body = httpClientInstance.get(access_Url);
        LinkedHashMap<String, Object> map = new ObjectMapper().readValue(body, LinkedHashMap.class);

        if (MapUtils.isEmpty(map)) {
            logger.error("网页授权请求失败:map:{}", map);
            return false;
        }

        if (null != map.get("errcode")) {
            logger.error("网页授权请求失败:errmsg:{}", map.get("errmsg"));
            return false;
        }

        String openId = (String) map.get("openid");
        if (StringUtils.isNotEmpty(openId)) {
                UserWebPageAuth insert = new UserWebPageAuth();
                insert.setOpenId(openId);
                insert.setExpiresIn((Integer) map.get("expires_in"));
                insert.setAccessToken((String) map.get("access_token"));
                insert.setRefreshToken((String) map.get("refresh_token"));
                if (null != map.get("unionid")) {
                    insert.setUnionId((String) map.get("unionid"));
                }
                insert.setScope((String) map.get("scope"));
                String access_token = (String) map.get("access_token");
                String url = String.format(userInfoUrl, access_token, openId);
          
                //获取用户详细信息
                String userInfoBody = httpClientInstance.get(url);
                LinkedHashMap<String, Object> userInfoMap = new ObjectMapper().readValue(userInfoBody, LinkedHashMap.class);
                if (MapUtils.isEmpty(userInfoMap)) {
                    logger.error("网页授权请求微信信息为空:{}", userInfoMap);
                    return false;
                }
                if (null != userInfoMap.get("errcode")) {
                    logger.error("网页授权请求用户信息错误:{}", userInfoMap.get("errmsg"));
                    return false;
                }
                String unionId = (String) userInfoMap.get("unionid");
                insert.setUnionId(unionId);
                insert.setNickname((String) userInfoMap.get("nickname"));
                insert.setLanguage((String) userInfoMap.get("language"));
                insert.setCity((String) userInfoMap.get("city"));
                insert.setProvince((String) userInfoMap.get("province"));
                insert.setCountry((String) userInfoMap.get("country"));
                insert.setSex((Integer) userInfoMap.get("sex"));
                insert.setHeadimgurl((String) userInfoMap.get("headimgurl"));
                insert.setPrivilege(JSONObject.toJSONString(userInfoMap.get("privilege")));
                userWebPageAuthService.insert(insert);
            }
        } else {
            logger.error("网页授权失败,openid获取失败,openid为空");
            return false;
        }

    } catch (Exception e) {
        logger.error("请求微信获取access_token失败:{}", e.getMessage());
    }
    return true;
}

HttpClientInstance示例代码:

@Component
public class HttpClientInstance {

    @Autowired
    CloseableHttpClient httpClient;

    public String get(String url) throws Exception {
        return getResponseContent(url, new HttpGet(url));
    }

    private String getResponseContent(String url, HttpRequestBase request) throws Exception {
        HttpResponse response = null;
        try {
            response = httpClient.execute(request);
            return EntityUtils.toString(response.getEntity(), "UTF-8");
        } catch (Exception e) {
            throw new Exception("got an error from HTTP for url : " + URLDecoder.decode(url, "UTF-8"), e);
        } finally {
            if (response != null) {
                EntityUtils.consumeQuietly(response.getEntity());
            }
            request.releaseConnection();
        }
    }
}
相关标签: java java