您好,登錄后才能下訂單哦!
這篇文章主要介紹“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
嘗試直接訪問用戶信息
http://localhost:8080/user/info
提示需要認證:
<oauth> <error_description> Full authentication is required to access this resource </error_description> <error> unauthorized </error> </oauth>
嘗試獲取授權碼
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。
輸入用戶名和密碼
username=user_1
passpord=123456
如上用戶名密碼是交給 SpringSecurity 的主過濾器用來認證的
登錄成功后,真正進行授權碼的申請
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 }
攜帶 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與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
請求 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" }
請求 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的使用方法”的學習就結束了,希望能夠解決大家的疑惑。理論與實踐的搭配能更好的幫助大家學習,快去試試吧!若想繼續學習更多相關知識,請繼續關注億速云網站,小編會繼續努力為大家帶來更多實用的文章!
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。