ICode9

精准搜索请尝试: 精确搜索
首页 > 编程语言> 文章详细

Java实现QQ第三方登录

2021-12-14 23:32:13  阅读:173  来源: 互联网

标签:QQ qq Java String 登录 3366 返回 pf public


| qq_level | 用户QQ等级(当pf=qplus时返回)。 |

| qq_vip_level | 用户QQ会员等级(当pf=qplus时返回)。 |

| qplus_level | 用户Q+等级(当pf=qplus时返回)。 |

| is_yellow_vip | 是否为黄钻用户(0:不是; 1:是)。

(当pf=qzone、pengyou或qplus时返回)

|

| is_yellow_year_vip | 是否为年费黄钻用户(0:不是; 1:是)。

(当pf=qzone、pengyou或qplus时返回)

|

| yellow_vip_level | 黄钻等级,目前最高级别为黄钻8级(如果是黄钻用户才返回此参数)。

(当pf=qzone、pengyou或qplus时返回)

|

| is_yellow_high_vip | 是否为豪华版黄钻用户(0:不是; 1:是)。

(当pf=qzone、pengyou或qplus时返回)

|

| is_blue_vip | 是否为蓝钻用户(0:不是; 1:是)。

(当pf=qqgame或3366时返回)

|

| is_blue_year_vip | 是否为年费蓝钻用户(0:不是; 1:是)。

(当pf=qqgame或3366时返回)

|

| blue_vip_level | 蓝钻等级(如果是蓝钻用户才返回此参数)。

(当pf=qqgame或3366时返回)

|

| 3366_level | 3366用户的大等级。

(当pf=3366时返回)

|

| 3366_level_name | 3366用户的等级名,如小游游、小游仙。

(当pf=3366时返回)

|

| 3366_grow_level | 3366用户的成长等级。

(当pf=3366时返回)

|

| 3366_grow_value | 3366用户的成长值。

(当pf=3366时返回)

|

| is_super_blue_vip | 是否是豪华蓝钻。

(当pf=qqgame或3366时返回)

|

正确返回示例:

JSON示例:

Content-type: text/html; charset=utf-8

{

“ret”:0,

“is_lost”:0,

“nickname”:“Peter”,

“gender”:“男”,

“country”:“中国”,

“province”:“广东”,

“city”:“深圳”,

“figureurl”:“http://imgcache.qq.com/qzone_v4/client/userinfo_icon/1236153759.gif”,

“is_yellow_vip”:1,

“is_yellow_year_vip”:1,

“yellow_vip_level”:7,

“is_yellow_high_vip”: 0

}

错误返回示例

Content-type: text/html; charset=utf-8

{

“ret”:1002,

“msg”:“请先登录”

}

用户资料的接口文档:https://wiki.open.qq.com/wiki/v3/user/get_info

请求成功,用户确认登录后回调方法

@GetMapping("/index")

public String qqcallback(HttpServletRequest request, HttpServletResponse response) throws Exception {

HttpSession session = request.getSession();

//qq返回的信息

String code = request.getParameter(“code”);

String state = request.getParameter(“state”);

String uuid = (String) session.getAttribute(“state”);

if(uuid != null){

if(!uuid.equals(state)){

throw new QQStateErrorException(“QQ,state错误”);

}

}

//Step2:通过Authorization Code获取Access Token

String backUrl = http + “/index”;

String url = “https://graph.qq.com/oauth2.0/token?grant_type=authorization_code”+

“&client_id=” + QQHttpClient.APPID +

“&client_secret=” + QQHttpClient.APPKEY +

“&code=” + code +

“&redirect_uri=” + backUrl;

String access_token = QQHttpClient.getAccessToken(url);

//Step3: 获取回调后的 openid 值

url = “https://graph.qq.com/oauth2.0/me?access_token=” + access_token;

String openid = QQHttpClient.getOpenID(url);

//Step4:获取QQ用户信息

url = “https://graph.qq.com/user/get_user_info?access_token=” + access_token +

“&oauth_consumer_key=”+ QQHttpClient.APPID +

“&openid=” + openid;

//返回用户的信息

JSONObject jsonObject = QQHttpClient.getUserInfo(url);

//也可以放到Redis和mysql中,只取出了部分数据,根据自己需要取

session.setAttribute(“openid”,openid); //openid,用来唯一标识qq用户

session.setAttribute(“nickname”,(String)jsonObject.get(“nickname”)); //QQ名

session.setAttribute(“figureurl_qq_2”,(String)jsonObject.get(“figureurl_qq_2”)); //大小为100*100像素的QQ头像URL

//响应重定向到home路径

return “redirect:/home”;

}

QQ客户端类QQHttpClient:

主要用于QQ消息返回

import com.alibaba.fastjson.JSONObject;

import org.apache.http.HttpEntity;

import org.apache.http.HttpResponse;

import org.apache.http.client.methods.HttpGet;

import org.apache.http.impl.client.CloseableHttpClient;

import org.apache.http.impl.client.HttpClients;

import org.apache.http.util.EntityUtils;

import java.io.IOException;

public class QQHttpClient {

//QQ互联中提供的 appid 和 appkey

public static final String APPID = “appid”;

public static final String APPKEY = “appkey”;

private static JSONObject parseJSONP(String jsonp){

int startIndex = jsonp.indexOf("(");

int endIndex = jsonp.lastIndexOf(")");

String json = jsonp.substring(startIndex + 1,endIndex);

return JSONObject.parseObject(json);

}

//qq返回信息:access_token=FE04************************CCE2&expires_in=7776000&refresh_token=88E4************************BE14

public static String getAccessToken(String url) throws IOException {

CloseableHttpClient client = HttpClients.createDefault();

String token = null;

HttpGet httpGet = new HttpGet(url);

HttpResponse response = client.execute(httpGet);

HttpEntity entity = response.getEntity();

if(entity != null){

String result = EntityUtils.toString(entity,“UTF-8”);

if(result.indexOf(“access_token”) >= 0){

String[] array = result.split("&");

for (String str : array){

if(str.indexOf(“access_token”) >= 0){

token = str.substring(str.indexOf("=") + 1);

break;

}

}

}

}

httpGet.releaseConnection();

return token;

}

//qq返回信息:callback( {“client_id”:“YOUR_APPID”,“openid”:“YOUR_OPENID”} ); 需要用到上面自己定义的解析方法parseJSONP

public static String getOpenID(String url) throws IOException {

JSONObject jsonObject = null;

CloseableHttpClient client = HttpClients.createDefault();

HttpGet httpGet = new HttpGet(url);

HttpResponse response = client.execute(httpGet);

HttpEntity entity = response.getEntity();

if(entity != null){

String result = EntityUtils.toString(entity,“UTF-8”);

jsonObject = parseJSONP(result);

}

httpGet.releaseConnection();

if(jsonObject != null){

return jsonObject.getString(“openid”);

}else {

return null;

}

}

//qq返回信息:{ “ret”:0, “msg”:"", “nickname”:“YOUR_NICK_NAME”, … },为JSON格式,直接使用JSONObject对象解析

public static JSONObject getUserInfo(String url) throws IOException {

JSONObject jsonObject = null;

CloseableHttpClient client = HttpClients.createDefault();

HttpGet httpGet = new HttpGet(url);

HttpResponse response = client.execute(httpGet);

HttpEntity entity = response.getEntity();

if(entity != null){

String result = EntityUtils.toString(entity,“UTF-8”);

jsonObject = JSONObject.parseObject(result);

}

httpGet.releaseConnection();

return jsonObject;

}

}

异常类QQStateErrorException:

public class QQStateErrorException extends Exception {

public QQStateErrorException() {

super();

}

public QQStateErrorException(String message) {

super(message);

}

public QQStateErrorException(String message, Throwable cause) {

super(message, cause);

}

public QQStateErrorException(Throwable cause) {

super(cause);

}

protected QQStateErrorException(String message, Throwable cause, boolean enableSuppression, boolean writableStackTrace) {

super(message, cause, enableSuppression, writableStackTrace);

}

}

首页controller用于跳转页面

@Controller

public class IndexController {

@GetMapping({"/index", “/”})

public String index(){

return “index”;

}

@GetMapping("/home")

public String home(HttpSession session, Model model){

String openid = (String) session.getAttribute(“openid”);

String nickname = (String) session.getAttribute(“nickname”);

String figureurl_qq_2 = (String) session.getAttribute(“figureurl_qq_2”);

model.addAttribute(“openid”,openid);

model.addAttribute(“nickname”,nickname);

model.addAttribute(“figureurl_qq_2”,figureurl_qq_2);

return “home”;

}

}

还有两个简单的登录页面和信息页面

index.html

Title

QQ登录

home.html

标签:QQ,qq,Java,String,登录,3366,返回,pf,public
来源: https://blog.csdn.net/m0_65321095/article/details/121942436

本站声明: 1. iCode9 技术分享网(下文简称本站)提供的所有内容,仅供技术学习、探讨和分享;
2. 关于本站的所有留言、评论、转载及引用,纯属内容发起人的个人观点,与本站观点和立场无关;
3. 关于本站的所有言论和文字,纯属内容发起人的个人观点,与本站观点和立场无关;
4. 本站文章均是网友提供,不完全保证技术分享内容的完整性、准确性、时效性、风险性和版权归属;如您发现该文章侵犯了您的权益,可联系我们第一时间进行删除;
5. 本站为非盈利性的个人网站,所有内容不会用来进行牟利,也不会利用任何形式的广告来间接获益,纯粹是为了广大技术爱好者提供技术内容和技术思想的分享性交流网站。

专注分享技术,共同学习,共同进步。侵权联系[81616952@qq.com]

Copyright (C)ICode9.com, All Rights Reserved.

ICode9版权所有