您好,登錄后才能下訂單哦!
這期內容當中小編將會給大家帶來有關如何在springboot中對接第三方微信授權,文章內容豐富且以專業的角度為大家分析和敘述,閱讀完這篇文章希望大家可以有所收獲。
1.流程圖
講一下:微信授權分為兩種,一種是靜默授權,另一種是非靜默授權。具體的話可以看一下微信授權文檔微信官方文檔
看著這么多的字,不光你煩,小鐵看著也是煩的很啊。
我大概的說一下,授權有兩種授權方式
1)靜默授權,大概的意思就是說,你只能拿code換openid 剩下的都換不了(scope=snsapi_base)并且自動跳轉到回調頁面(給用戶的感覺是直接跳轉到回調頁面)
2)非靜默授權,大概意思就是說,你能拿code換openid和access_token等等一些信息啥的(scope=snsapi_userinfo)但是需要用戶點擊
總結:只要openid你就靜默授權,但是你還想獲取用戶的頭像啥的你就非靜默授權(官方也是墨跡,說了那么多廢話。。。。)
注意:這個是前端的事情,如果你們前端是一個小白的話,請告訴他這個點。如果是個大佬的話 估計也不用你告訴了,我上面說的那么多廢話,根本不關咱們java什么事情!!
別生氣,我上面說的全都需要注意的。如果你耐心的看到了這里,那么你的幸福就來臨了。下面說的才是咱們java的發送請求啥的。
第一步:咱們先封裝一個get請求(你直接封一個工具類就行了,如果你有,就當小鐵沒說)
public static String sendGet(String url, String param) { String result = ""; BufferedReader in = null; try { String urlNameString = url + "?" + param; URL realUrl = new URL(urlNameString); // 打開和URL之間的連接 URLConnection connection = realUrl.openConnection(); // 設置通用的請求屬性 connection.setRequestProperty("accept", "*/*"); connection.setRequestProperty("connection", "Keep-Alive"); connection.setRequestProperty("user-agent","Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1;SV1)"); // 建立實際的連接 connection.connect(); // 獲取所有響應頭字段 Map<String, List<String>> map = connection.getHeaderFields(); // 遍歷所有的響應頭字段 for (String key : map.keySet()) { System.out.println(key + "--->" + map.get(key)); } // 定義 BufferedReader輸入流來讀取URL的響應 in = new BufferedReader(new InputStreamReader( connection.getInputStream())); String line; while ((line = in.readLine()) != null) { result += line; } } catch (Exception e) { System.out.println("發送GET請求出現異常!" + e); e.printStackTrace(); } // 使用finally塊來關閉輸入流 finally { try { if (in != null) { in.close(); } } catch (Exception e2) { e2.printStackTrace(); } } return result; }
第二步:就到了咱們發送請求的時候了
需要的參數
1)code(前端給你傳過來)
2)appId 去微信公眾號里去看去
3)secret 同上 微信公眾平臺
夠詳細吧,這都告訴你了。想查看secret只能重置除非你能想起來之前設置的是什么!!
這個是咱們發送請求需要的所有參數
來,咱們看代碼
@Override public String WeChatAuthorization(String jsCode) { try { String url = "https://api.weixin.qq.com/sns/oauth3/access_token"; String appid = WxConstant.appId; //appid String secret = WxConstant.secret; //secret String grant_type = "authorization_code"; String param = "appid="+appid+"&secret="+secret+"&code="+jsCode+"&grant_type="+grant_type; String sr = WxUtil.sendGet(url,param); JSONObject json = new JSONObject(sr); String openid = (String) json.get("openid"); String accessToken = (String) json.get("access_token"); return openid; }catch(Exception e){ e.printStackTrace(); } return null; }
我刪除了好多(怕你們看不明白),這個就是獲取openid和accessToken 但是我只返回了openid。(直接粘過去,改吧改吧就能用了)。
來,咱們繼續看。拿到accessToken和openid了 咱們還要拿到用戶的頭像和昵稱
來咱們繼續看微信文檔
這些事需要的參數,access_token 和 openid 是咱們剛才授權獲取到的參數,lang的話就用zh_CN就可以
@Override public Map WeChatUserInfo(String accessToken, String openid) { try { String url = "https://api.weixin.qq.com/sns/userinfo"; String param = "access_token="+accessToken+"&openid="+openid+"&lang=zh_CN"; String sr = WxUtil.sendGet(url,param); JSONObject json = new JSONObject(sr); Map<String,String> map = new HashedMap(); String headimgurl = (String)json.get("headimgurl"); String nickName = (String)json.get("nickname"); map.put("headimgurl",headimgurl); map.put("nickName",nickName); return map; } catch (JSONException e) { e.printStackTrace(); } return null; }
上述就是小編為大家分享的如何在springboot中對接第三方微信授權了,如果剛好有類似的疑惑,不妨參照上述分析進行理解。如果想知道更多相關知識,歡迎關注億速云行業資訊頻道。
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。