亚洲激情专区-91九色丨porny丨老师-久久久久久久女国产乱让韩-国产精品午夜小视频观看

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

spring-security-oauth2的使用方法

發布時間:2021-07-08 17:43:37 來源:億速云 閱讀:182 作者:chen 欄目:大數據

這篇文章主要介紹“spring-security-oauth2的使用方法”,在日常操作中,相信很多人在spring-security-oauth2的使用方法問題上存在疑惑,小編查閱了各式資料,整理出簡單好用的操作方法,希望對大家解答”spring-security-oauth2的使用方法”的疑惑有所幫助!接下來,請跟著小編一起來學習吧!

git地址奉上

https://gitee.com/luck/oauth3.git

#SpringBoot2 + spring-security-oauth3 使用示例,實現了以下四和授權模式。

(1)授權碼模式(Authorization Code)

(2)授權碼簡化模式(Implicit)

(3)Pwd模式(Resource Owner Password Credentials)

(4)Client模式(Client Credentials)

項目提供的所有用戶和client 的密碼都為123456

#安裝運行

導入oauth3.sql

修改 application.yml的數據源

運行

mvn spring-boot:run

授權碼模式(Authorization Code)使用說明

  1. 嘗試直接訪問用戶信息

http://localhost:8080/user/info

提示需要認證:

<oauth>
	<error_description>
		Full authentication is required to access this resource
	</error_description>
	<error>
		unauthorized
	</error>
</oauth>
  1. 嘗試獲取授權碼

http://localhost:8080/oauth/authorize?client_id=client_3&response_type=code&scope=read&redirect_uri=http://localhost:8080/code?client_id=client_3

因為這里會彈出 HTTP Basic認證,必須登錄的用戶才能申請 code。

  1. 輸入用戶名和密碼

username=user_1

passpord=123456

如上用戶名密碼是交給 SpringSecurity 的主過濾器用來認證的

  1. 登錄成功后,真正進行授權碼的申請

oauth/authorize 認證成功,會根據 redirect_uri 執行 302 重定向,并且帶上生成的 code,注意重定向到的是 8080 端口,這個時候已經是另外一個應用了。

http://localhost:8080/code?client_id=client_3&code=c3FbHM

代碼中封裝了一個 http 請求, 使用 restTemplate 向 認證服務器發送 token 的申請,當然是使用 code 來申請的,并最終成功獲取到 access_token

{
    "access_token":"5db93d64-2252-4349-90a3-e4d6637f90ae",
    "refresh_token":"5a67faae-38ed-4e5c-a809-c9d07c16abcb",
    "scope":"read",
    "token_type":"bearer",
    "expires_in":42494
}
  1. 攜帶 access_token 訪問 用戶 信息

http://localhost:8080/user/info?access_token=5db93d64-2252-4349-90a3-e4d6637f90ae

正常返回信息

{
    "password":null,
    "username":"user_1",
    "authorities":[{"authority":"ROLE_USER"}],
    "accountNonExpired":true,
    "accountNonLocked":true,
    "credentialsNonExpired":true,
    "enabled":true
}

授權碼簡化模式(Implicit) 使用說明

Implicit與Authorization_code 區別是 Implicit不需要驗證client_secret,請求如果成功會直接返回 token

獲取授權碼

 http://localhost:8080/oauth/authorize?response_type=token&client_id=client_4&scope=read&redirect_uri=http://localhost:8080/param

如果成功會重定向到URL(token在URL里)

http://localhost:8080/param#access_token=85090391-2c33-4a75-a989-116bb06b0c5a&token_type=bearer&expires_in=42962&scope=read

密碼模式(Resource Owner Password Credentials)使用說明

請求 Access Token:

http://localhost:8080/oauth/token?username=user_1&password=123456&grant_type=client_credentials&scope=read&client_id=client_1&client_secret=123456

正常返回信息

{
    "access_token":"fb1a1d03-9658-4d92-822a-d988c9f7a923",
    "token_type":"bearer",
    "expires_in":43148,
    "scope":"read"
}

Client模式(Client Credentials)使用說明

請求 Access Token:

http://localhost:8080/oauth/token?grant_type=client_credentials&scope=read&client_id=client_1&client_secret=123456

正常返回信息

{
  "access_token": "fb1a1d03-9658-4d92-822a-d988c9f7a923",
  "token_type": "bearer",
  "expires_in": 42811,
  "scope": "read"
}

到此,關于“spring-security-oauth2的使用方法”的學習就結束了,希望能夠解決大家的疑惑。理論與實踐的搭配能更好的幫助大家學習,快去試試吧!若想繼續學習更多相關知識,請繼續關注億速云網站,小編會繼續努力為大家帶來更多實用的文章!

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

冕宁县| 玉田县| 保亭| 吉林省| 乌海市| 鹤峰县| 岱山县| 江油市| 乌拉特中旗| 温泉县| 玉林市| 乌海市| 宕昌县| 淮安市| 堆龙德庆县| 庆元县| 芦山县| 大连市| 钦州市| 策勒县| 舟山市| 噶尔县| 同德县| 略阳县| 八宿县| 建昌县| 广宗县| 江源县| 尚义县| 安国市| 横峰县| 河间市| 青河县| 班玛县| 莱州市| 安陆市| 原平市| 阿拉尔市| 晴隆县| 社旗县| 乌拉特后旗|