JavaはQQ第三者登録の例示コードを実現します。


前期の準備
1.クラウドサーバ
2.届出のドメイン名
3.ローカルデバッグはホームファイルを修正し、ドメイン名を127..0.1にマッピングする必要があります。
どのようにhostsファイルを修正しますか?
QQインターネットを申請して開発者になります。
QQインターネットのアプリケーションを申請する時はドメイン名を登録する必要がありますので、事前に登録ドメイン名を用意することを提案します。
QQ接続:https://www.jb51.net/diannaojichu/319774.html
ログイン後、顔写真をクリックし、認証ページに入り、情報を記入し、審査を待つ。

承認後にアプリケーションを作成する

アプリケーション作成は審査を通過したら、APP IDとAPP Keyを使用できます。

前の仕事はこれだけです。後はコードを書き始めます。
プロジェクト構造:

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:一部のデータの紛失やエラーがあります。キャッシュしないでください。
nikname
ニックネーム。
gender
性別
country
国家(pf=qzone、pengyouまたはqplusの時に戻ります)。
province
省(pf=qzone、pengyouまたはqplusの時に戻ります)。
シティ
市(pf=qzone、pengyouまたはqplusの時に戻ります)。
ファイグレル
プロフィールURL。詳細は:共通リターンコード説明⻠OpenAPIV 3.0リターンコード
openid
ユーザーQQ番号が変換されたID(pf=qplusの場合に戻る)。
qq_vel
ユーザQQランク(pf=qplusの場合は戻ります)。
qq_vip_vel
ユーザQQ会員レベル(pf=qplusの場合は戻ります)。
qplus.vel
ユーザQ+レベル(pf=qplusの場合は戻ります)。
is_yellovip
黄砂のユーザーかどうか(0:いいえ。1:はい。
(pf=qzone、pengyouまたはqplusの場合に戻ります)
is_yelloyear_vip
年会費イエロードリルのユーザーかどうか(0:いいえ。1:はい。
(pf=qzone、pengyouまたはqplusの場合に戻ります)
yellovip_vel
イエローダイヤモンドのレベルは、現在の最高レベルはイエローダイヤモンドの8段階です。
(pf=qzone、pengyouまたはqplusの場合に戻ります)
is_yello高揚するvip
豪華版イエローダイヤモンドのユーザーかどうか(0:いいえ。1:はい。
(pf=qzone、pengyouまたはqplusの場合に戻ります)
is_ブルーvip
ブルーダイヤモンドのユーザーかどうか(0:いいえ。1:はい。
(pf=qgameまたは3366の時に戻る)
is_ブルーyear_vip
年会費の青いドリルのユーザーかどうか(0:いいえ。1:はい。
(pf=qgameまたは3366の時に戻る)
ブルーvip_vel
ブルーダイヤモンドのレベル(ブルーダイヤモンドの場合はこのパラメータに戻ります)。
(pf=qgameまたは3366の時に戻る)
3366_vel
3366ユーザの大レベル。
(pf=3366の場合は戻ります)
3366_levelname
3366ユーザの等級名、例えば小遊遊、小遊仙。
(pf=3366の場合は戻ります)
3366_grow_vel
3366ユーザの成長レベル。
(pf=3366の場合は戻ります)
3366_grow_value
3366ユーザの成長値。
(pf=3366の場合は戻ります)
is_スーパーブルーvip
ラグジュアリーブルーストーンですか?
(pf=qgameまたは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クライアントクラスQHttp Client:
主に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;
  }
}
異常クラスQQStarteError Exception:

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.

<!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>
ホメン.

<!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
以上が本文の全部です。皆さんの勉強に役に立つように、私たちを応援してください。