微信登錄

来源:https://www.cnblogs.com/zhaochaoyeu/archive/2020/03/22/12549067.html
-Advertisement-
Play Games

恢復內容開始 1.背景:現在很多app或者網站都想要接入微信登錄,可以使用戶不需要註冊就能快速使用APP或網站。 2.微信登錄需要一些前置操作 2.1 搜索:微信開放平臺 鏈接:https://open.weixin.qq.com/ 2.2 註冊成功,獲取到開發所需要的appID和appsecret ...


------------恢復內容開始------------

1.背景:現在很多app或者網站都想要接入微信登錄,可以使用戶不需要註冊就能快速使用APP或網站。

2.微信登錄需要一些前置操作

  2.1 搜索:微信開放平臺 鏈接:https://open.weixin.qq.com/

  2.2 註冊成功,獲取到開發所需要的appID和appsecret

  

 

 3.微信的登錄的交互流程

  3.1 微信用戶首先向第三APP請求登錄 

  3.2 第三APP彈出一個二維碼(這個二維碼可以由客戶端或者H5去做),用戶掃描二維(請求微信Oauth2.0授權登錄)

  3.3 app彈出一個確認登錄的頁面(微信平臺請求用戶確認)

  3.4 用戶點擊確認

  3.5 微信公眾平臺拉起第三方或者重定向到第三方,帶上授權臨時票據code(前端或者客戶端的工作,前端把回調地址放在3.2步驟的,或者在公眾平臺配置)

  3.6 請求到服務端:服務端需要把code、appId、appscret作為參數,在程式內部調起微信介面,獲取到access_token和openId

     

  3.7 獲取到用戶的access_token和openId後就可以獲取到用戶的微信信息了

    

 

 

   3.8 獲取到用戶unionId後,後端進行存儲,為該用戶生成一條用戶信息,用戶登錄成功,後端可以重定向到前端某一個登錄的頁面,也可以讓前端,根據返回值進行跳              轉

   3.9 登錄成功後的操作,前端請求後端介面時把unionId帶上,後端根據unionId,確定,當前用戶unionId,找到用戶在自己APP的ID

4. 附上完整代碼:

  HTTPClient:maven 依賴

 

<dependency>
<groupId>org.apache.httpcomponents</groupId>
<artifactId>httpclient</artifactId>
<version>4.3.6</version>
</dependency>
<dependency>
<groupId>org.apache.httpcomponents</groupId>
<artifactId>httpmime</artifactId>
<version>4.3.6</version>
</dependency>

  1 package com.example.student.project.controller;
  2 
  3 import com.example.student.project.domain.WXUserInfoData;
  4 import org.apache.commons.lang3.StringUtils;
  5 import org.apache.http.HttpEntity;
  6 import org.apache.http.HttpResponse;
  7 import org.apache.http.client.ClientProtocolException;
  8 import org.apache.http.client.methods.HttpGet;
  9 import org.apache.http.client.methods.HttpUriRequest;
 10 import org.apache.http.entity.ContentType;
 11 import org.apache.http.impl.client.CloseableHttpClient;
 12 import org.apache.http.impl.client.HttpClientBuilder;
 13 import org.apache.http.util.EntityUtils;
 14 import org.slf4j.Logger;
 15 import org.slf4j.LoggerFactory;
 16 import org.springframework.boot.configurationprocessor.json.JSONException;
 17 import org.springframework.boot.configurationprocessor.json.JSONObject;
 18 import org.springframework.stereotype.Controller;
 19 import org.springframework.web.bind.annotation.RequestMapping;
 20 import org.springframework.web.bind.annotation.RequestMethod;
 21 import org.springframework.web.bind.annotation.ResponseBody;
 22 
 23 import java.io.IOException;
 24 import java.io.UnsupportedEncodingException;
 25 import java.net.URLEncoder;
 26 import java.nio.charset.Charset;
 27 import java.nio.charset.StandardCharsets;
 28 import java.util.Map;
 29 
 30 @Controller
 31 @RequestMapping(value = "/CourtSystem")
 32 public class WeiXinLoginController {
 33 
 34     private static final Logger logger = LoggerFactory.getLogger(WeiXinLoginController.class);
 35 
 36     public static final String WX_AUTH_LOGIN_URL = "https://api.weixin.qq.com/sns/oauth2/access_token";
 37     public static final String WX_USERINFO_URL = "https://api.weixin.qq.com/sns/userinfo";
 38     //appid和appSecret 是在公眾平臺上申請的
 39     //AppId:應用唯一標識,在微信開放平臺提交應用審核通過後獲得
 40     public static final String WX_APP_ID = "wx9ecd6f7******";
 41     //AppSecret:應用密鑰AppSecret,在微信開放平臺提交應用審核通過後獲得
 42     public static final String WX_APP_KEY = "c1bf387181aaf6e5ff********";
 43 
 44 
 45     /**
 46      * 第三方微信登錄
 47      * @param code  客戶端返回的code
 48      * @return
 49      */
 50     @RequestMapping(value = "/checkLogin", method = RequestMethod.POST)
 51     @ResponseBody
 52     public WXUserInfoData checkLogin(String code) throws JSONException {
 53         //通過code獲取access_token
 54         //String url = "https://api.weixin.qq.com/sns/oauth2/access_token?appid=APPID&secret=SECRET&code=CODE&grant_type=authorization_code"
 55         StringBuffer loginUrl = new StringBuffer();
 56         //url拼接
 57         // WX_AUTH_LOGIN_URL = "https://api.weixin.qq.com/sns/oauth2/access_token"
 58         //AppId:應用唯一標識,在微信開放平臺提交應用審核通過後獲得
 59         //WX_APP_ID = "wx9ecd6f7******";
 60         //AppSecret:應用密鑰AppSecret,在微信開放平臺提交應用審核通過後獲得
 61         //WX_APP_KEY = "c1bf387181aaf6e5ff********";
 62         loginUrl.append(WX_AUTH_LOGIN_URL).append("?appid=")  //AppId
 63                 .append(WX_APP_ID).append("&secret=")  //AppSecret
 64                 .append(WX_APP_KEY).append("&code=").append(code)  //填寫第二步獲取的code參數
 65                 .append("&grant_type=authorization_code");  //填authorization_code(固定,來自於官方文檔)
 66         String loginRet = get(loginUrl.toString());
 67         JSONObject grantObj = new JSONObject(loginRet);
 68         String errcode = grantObj.optString("errcode");
 69         if (!StringUtils.isEmpty(errcode))
 70         {
 71             logger.error("login weixin error"+loginRet);
 72             return null;
 73         }
 74         String openId = grantObj.optString("openid");
 75         if (StringUtils.isEmpty(openId))
 76         {
 77             logger.error("login weixin getOpenId error"+loginRet);
 78             return null;
 79         }
 80 
 81         String accessToken = grantObj.optString("access_token");  //介面調用憑證
 82         String expiresIn = grantObj.optString("expires_in");  // access_token介面調用憑證超時時間,單位(秒)
 83         String refreshToken = grantObj.optString("refresh_token");  //用戶刷新access_token
 84         String scope = grantObj.optString("scope");  //用戶授權的作用域,使用逗號(,)分隔
 85 
 86         //通過access_token獲取用戶微信信息
 87         StringBuffer userUrl = new StringBuffer();
 88         // String url = "https://api.weixin.qq.com/sns/userinfo?access_token=ACCESS_TOKEN&openid=OPENID";
 89         // 第三步獲取的access_token ; OPENID:第三步獲取的openId
 90         //WX_USERINFO_URL = "https://api.weixin.qq.com/sns/userinfo"
 91         userUrl.append(WX_USERINFO_URL).append("?access_token=").append(accessToken).append("&openid=").append(openId);
 92         String userRet = get(userUrl.toString());
 93         JSONObject userObj = new JSONObject(userRet);
 94         WXUserInfoData userInfo = new WXUserInfoData();
 95         userInfo.setOpenId(openId);  // 用戶標識
 96         userInfo.setAuthToken(accessToken);
 97         userInfo.setAuthRefreshToken(refreshToken);  // 專用於刷新access token的token
 98         userInfo.setScope(scope);  //    scope:許可權
 99         userInfo.setExpiresIn(Integer.valueOf(expiresIn));
100         String nickname = userObj.optString("nickname");  // 用戶昵稱
101         String sex = userObj.optString("sex");  // 1男,2女,0未知
102         String userImg = userObj.optString("headimgurl");  //頭像鏈接
103         String unionid = userObj.optString("unionid");  //全局唯一標識
104         userInfo.setName(nickname);
105         userInfo.setIcon(userImg);
106         userInfo.setGender(sex);
107         userInfo.setLoginId(unionid);
108         return userInfo;
109     }
110 
111 
112     public static String get(String url) {
113         String body = null;
114         try (CloseableHttpClient httpClient = HttpClientBuilder.create().build()) {
115             logger.info("create httppost:" + url);
116             HttpGet get = new HttpGet(url);
117             get.addHeader("Accept-Charset","utf-8");
118             HttpResponse response = sendRequest(httpClient, get);
119             body = parseResponse(response);
120         } catch (IOException e) {
121             logger.error("send post request failed: {}", e.getMessage());
122         }
123 
124         return body;
125     }
126 
127     private static String paramsToString(Map<String, String> params) {
128         StringBuilder sb = new StringBuilder();
129         try{
130             for (String key : params.keySet()) {
131                 sb.append(String.format("&%s=%s", key, URLEncoder.encode(params.get(key), StandardCharsets.UTF_8.toString())));
132             }
133         }catch(UnsupportedEncodingException e){
134             logger.warn("{}: encode url parameters failed", e.getMessage());
135         }
136         return sb.length() > 0 ? "?".concat(sb.substring(1)) : "";
137     }
138 
139     private static HttpResponse sendRequest(CloseableHttpClient httpclient, HttpUriRequest httpost)
140             throws ClientProtocolException, IOException {
141         HttpResponse response = null;
142         response = httpclient.execute(httpost);
143         return response;
144     }
145 
146     private static String parseResponse(HttpResponse response) {
147         logger.info("get response from http server..");
148         HttpEntity entity = response.getEntity();
149 
150         logger.info("response status: " + response.getStatusLine());
151         Charset charset = ContentType.getOrDefault(entity).getCharset();
152         if (charset != null) {
153             logger.info(charset.name());
154         }
155 
156         String body = null;
157         try {
158             body = EntityUtils.toString(entity, "utf-8");
159             logger.info("body " + body);
160         } catch (IOException e) {
161             logger.warn("{}: cannot parse the entity", e.getMessage());
162         }
163 
164         return body;
165     }
166 
167 
168 }
View Code

 

 

您的分享是我們最大的動力!

-Advertisement-
Play Games
更多相關文章
  • 我的LeetCode刷題源碼[GitHub]:https://github.com/izhoujie/Algorithmcii LeetCode 876. 鏈表的中間結點 題目 給定一個帶有頭結點 head 的非空單鏈表,返回鏈表的中間結點。 如果有兩個中間結點,則返回第二個中間結點。 示例 1: ...
  • JSP+MySQL+Java開發ssh網上預約預約掛號系統的設計與實現 需求使用SSH框架(spring+struts2+hibernate)實現一個網上預約預約掛號系統, 用戶登錄註冊登錄系統, 能按科室查看醫生, 並能夠進行預約掛號和線上留言, 後臺管理系統更能夠進行科室管理,醫生管理,預約管理 ...
  • 一、java.io.DataOutputStream;數據位元組輸出流 1.可以將記憶體中的“int i = 2;"寫入到硬碟文件裡面,寫進去的不是字元串,寫進去的是二進位數據,可以帶有類型。 package com.bjpowernode.java_learning; import java.io.* ...
  • 以前看到過NSQ這個東西,也一直沒去看。今天剛好有時間就搭建了下,簡單嘗試了下這個Go語言下的消息隊列NSQ,我這裡簡要記錄下。 其實,NSQ國內用的是比較少的,我這裡也是算瞭解這麼個東西吧 ,稍微看下源碼,學到東西而已。 NSQ簡介 NSQ是一個基於Go語言的分散式實時消息平臺, 它具有分散式、去 ...
  • 現在springboot的火熱程度已經超過了spring了,因為springboot簡單快速方便,springboot的初衷就是為了簡化spring的配置,是的開發中集成新功能時更快,簡化或者減少相關的配置。springboot的基礎是“約定大於配置”。整合了所有的框架,可以把springboot當 ...
  • ...
  • [TOC] 環境 idea 2019.1 Meavn 3.6.0 SpringBoot 2.2.5 jdk 1.8 構建eureka server 新建工程 啟動類添加註解 @EnableEurekaServer 其他配置 構建eureka client 新建工程 pom文件添加依賴,解決啟動失敗 ...
  • 距離Java 8發佈已經過去了7、8年的時間,Java 14也剛剛發佈。Java 8中關於函數式編程和新增的Stream流API至今飽受“爭議”。 如果你不曾使用Stream流,那麼當你見到Stream操作時一定對它發出過鄙夷的聲音,併在心裡說出“這都寫的什麼玩意兒”。 如果你熱衷於使用Stream ...
一周排行
    -Advertisement-
    Play Games
  • 移動開發(一):使用.NET MAUI開發第一個安卓APP 對於工作多年的C#程式員來說,近來想嘗試開發一款安卓APP,考慮了很久最終選擇使用.NET MAUI這個微軟官方的框架來嘗試體驗開發安卓APP,畢竟是使用Visual Studio開發工具,使用起來也比較的順手,結合微軟官方的教程進行了安卓 ...
  • 前言 QuestPDF 是一個開源 .NET 庫,用於生成 PDF 文檔。使用了C# Fluent API方式可簡化開發、減少錯誤並提高工作效率。利用它可以輕鬆生成 PDF 報告、發票、導出文件等。 項目介紹 QuestPDF 是一個革命性的開源 .NET 庫,它徹底改變了我們生成 PDF 文檔的方 ...
  • 項目地址 項目後端地址: https://github.com/ZyPLJ/ZYTteeHole 項目前端頁面地址: ZyPLJ/TreeHoleVue (github.com) https://github.com/ZyPLJ/TreeHoleVue 目前項目測試訪問地址: http://tree ...
  • 話不多說,直接開乾 一.下載 1.官方鏈接下載: https://www.microsoft.com/zh-cn/sql-server/sql-server-downloads 2.在下載目錄中找到下麵這個小的安裝包 SQL2022-SSEI-Dev.exe,運行開始下載SQL server; 二. ...
  • 前言 隨著物聯網(IoT)技術的迅猛發展,MQTT(消息隊列遙測傳輸)協議憑藉其輕量級和高效性,已成為眾多物聯網應用的首選通信標準。 MQTTnet 作為一個高性能的 .NET 開源庫,為 .NET 平臺上的 MQTT 客戶端與伺服器開發提供了強大的支持。 本文將全面介紹 MQTTnet 的核心功能 ...
  • Serilog支持多種接收器用於日誌存儲,增強器用於添加屬性,LogContext管理動態屬性,支持多種輸出格式包括純文本、JSON及ExpressionTemplate。還提供了自定義格式化選項,適用於不同需求。 ...
  • 目錄簡介獲取 HTML 文檔解析 HTML 文檔測試參考文章 簡介 動態內容網站使用 JavaScript 腳本動態檢索和渲染數據,爬取信息時需要模擬瀏覽器行為,否則獲取到的源碼基本是空的。 本文使用的爬取步驟如下: 使用 Selenium 獲取渲染後的 HTML 文檔 使用 HtmlAgility ...
  • 1.前言 什麼是熱更新 游戲或者軟體更新時,無需重新下載客戶端進行安裝,而是在應用程式啟動的情況下,在內部進行資源或者代碼更新 Unity目前常用熱更新解決方案 HybridCLR,Xlua,ILRuntime等 Unity目前常用資源管理解決方案 AssetBundles,Addressable, ...
  • 本文章主要是在C# ASP.NET Core Web API框架實現向手機發送驗證碼簡訊功能。這裡我選擇是一個互億無線簡訊驗證碼平臺,其實像阿裡雲,騰訊雲上面也可以。 首先我們先去 互億無線 https://www.ihuyi.com/api/sms.html 去註冊一個賬號 註冊完成賬號後,它會送 ...
  • 通過以下方式可以高效,並保證數據同步的可靠性 1.API設計 使用RESTful設計,確保API端點明確,並使用適當的HTTP方法(如POST用於創建,PUT用於更新)。 設計清晰的請求和響應模型,以確保客戶端能夠理解預期格式。 2.數據驗證 在伺服器端進行嚴格的數據驗證,確保接收到的數據符合預期格 ...