자바 QQ 제3자 로그 인 을 위 한 예제 코드

전기 준비 작업
1.클 라 우 드 서버
2.등 록 된 도 메 인 이름
3.로 컬 디 버 깅 은 hosts 파일 을 수정 하여 도 메 인 이름 을 127.0.0.1 에 표시 해 야 합 니 다.
hosts 파일 을 어떻게 수정 합 니까?
QQ 상호 접속 을 신청 하여 개발 자가 되 었 습 니 다.
QQ 상호 연결 생 성 애플 리 케 이 션 을 신청 할 때 도 메 인 이름 을 등록 해 야 하기 때문에 도 메 인 이름 을 미리 준비 하 는 것 을 권장 합 니 다.
QQ 상호 접속:https://www.jb51.net/diannaojichu/319774.html
로그 인 후 프로필 사진 을 클릭 하고 인증 페이지 에 들 어가 정 보 를 작성 하고 심 사 를 기다린다.

심사 통과 후 응용 프로그램 만 들 기

앱 생 성 이 심 사 를 통과 하면 앱 ID 와 앱 키 를 사용 할 수 있다

전기 작업 은 이것 뿐 이 니,뒤에 코드 를 쓰기 시작 할 수 있다.
프로젝트 구성:

properties 나 yml 프로필(여 기 는 간단 한 설정 입 니 다.데이터베이스 등 설정 을 스스로 추가 할 수 있 습 니 다)

server.port=80
server.servlet.context-path=/
 
#qq  
qq.oauth.http:QQ            

pom 에 의존 추가

<!--httpclient-->
<dependency>
  <groupId>org.apache.httpcomponents</groupId>
  <artifactId>httpclient</artifactId>
  <version>4.5.6</version>
</dependency>
<!--   JSON-->
<dependency>
  <groupId>com.alibaba</groupId>
  <artifactId>fastjson</artifactId>
  <version>1.2.47</version>
</dependency>
QQ 로그 인 요청 보 내기
전역 변 수 를 정의 하여 설정 파일 의 사이트 주 소 를 가 져 옵 니 다.

@Value("${qq.oauth.http}")
private String http;
로그 인 리 셋 주 소 를 정의 합 니 다(사이트 주소 로 연결 하거나 직접 쓸 수 있 습 니 다)

//QQ        
String backUrl = http + "/index";

로그 인 요청 방법 코드

@GetMapping("/qq/login")
public String qq(HttpSession session) throws UnsupportedEncodingException {
  //QQ        
  String backUrl = http + "/index";
 
  //         CSRF  
  String uuid = UUID.randomUUID().toString().replaceAll("-","");
  session.setAttribute("state",uuid);
 
  //Step1:  Authorization Code
  String url = "https://graph.qq.com/oauth2.0/authorize?response_type=code"+
      "&client_id=" + QQHttpClient.APPID +
      "&redirect_uri=" + URLEncoder.encode(backUrl, "utf-8") +
      "&state=" + uuid;
 
  return "redirect:" + url;
}
반환 매개 변수 정보 설명:
매개 변수 이름
묘사 하 다.
ret
반환 코드.상세 한 내용 은https://connect.qq.com/index.html
msg
오류 가 발생 하면 오류 메 시 지 를 되 돌려 줍 니 다.
is_lost
데이터 분실 여 부 를 판단 하 다.cache 를 사용 하지 않 으 면 이 인자 에 관심 을 가 질 필요 가 없습니다.
0 또는 되 돌아 오지 않 음:데이터 가 없어 서 캐 시 할 수 있 습 니 다.
1:일부 데 이 터 를 잃 어 버 리 거나 오류 가 있 습 니 다.캐 시 하지 마 십시오.
nickname
별명
gender
성별
country
국가(pf=qzone,pengyou 또는 qplus 시 반환).
province
성(pf=qzone,pengyou 또는 qplus 시 반환).
city
시(pf=qzone,pengyou 또는 qplus 시 반환).
figureurl
프로필 사진 URL.상세 한 내용 은공공 반환 코드 설명\#OpenAPI V 3.0 반환 코드
openid
사용자 QQ 번호 로 전 환 된 ID(pf=qplus 시 되 돌려 줍 니 다).
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":"    "
}
사용자 자료 의 인터페이스 문서:전단 페이지 규범\#6.사용자 프로필 사진 가 져 오기 및 크기 설명
요청 성공,사용자 확인 로그 인 후 리 셋 방법

@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 클 라 이언 트 클래스 QQQHttpClient:
주로 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;
  }
}
이상 클래스 QQQStateErrorException:

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

<!DOCTYPE html>
<html lang="en">
<head>
  <meta charset="UTF-8">
  <title>Title</title>
</head>
<body>
  <a href="/qq/login" rel="external nofollow" >QQ  </a>
</body>
</html>
home.html

<!DOCTYPE html>
<html lang="en">
<head>
  <meta charset="UTF-8">
  <title>Title</title>
</head>
<body>
<div>
  <img th:src="${figureurl_qq_2}">
</div>
<span th:text="${openid}"></span>
<span th:text="${nickname}"></span>
</body>
</html>
마지막 으로 다운로드 주소 첨부:https://wiki.open.qq.com/wiki/v3/user/get_info
이상 이 바로 본 고의 모든 내용 입 니 다.여러분 의 학습 에 도움 이 되 고 저 희 를 많이 응원 해 주 셨 으 면 좋 겠 습 니 다.

좋은 웹페이지 즐겨찾기