這篇文章主要介紹“spring-security-oauth2的使用方法”,在日常操作中,相信很多人在spring-security-oauth2的使用方法問(wèn)題上存在疑惑,小編查閱了各式資料,整理出簡(jiǎn)單好用的操作方法,希望對(duì)大家解答”spring-security-oauth2的使用方法”的疑惑有所幫助!接下來(lái),請(qǐng)跟著小編一起來(lái)學(xué)習(xí)吧!
公司主營(yíng)業(yè)務(wù):成都網(wǎng)站設(shè)計(jì)、做網(wǎng)站、移動(dòng)網(wǎng)站開(kāi)發(fā)等業(yè)務(wù)。幫助企業(yè)客戶(hù)真正實(shí)現(xiàn)互聯(lián)網(wǎng)宣傳,提高企業(yè)的競(jìng)爭(zhēng)能力。創(chuàng)新互聯(lián)是一支青春激揚(yáng)、勤奮敬業(yè)、活力青春激揚(yáng)、勤奮敬業(yè)、活力澎湃、和諧高效的團(tuán)隊(duì)。公司秉承以“開(kāi)放、自由、嚴(yán)謹(jǐn)、自律”為核心的企業(yè)文化,感謝他們對(duì)我們的高要求,感謝他們從不同領(lǐng)域給我們帶來(lái)的挑戰(zhàn),讓我們激情的團(tuán)隊(duì)有機(jī)會(huì)用頭腦與智慧不斷的給客戶(hù)帶來(lái)驚喜。創(chuàng)新互聯(lián)推出海林免費(fèi)做網(wǎng)站回饋大家。
git地址奉上
https://gitee.com/luck/oauth3.git
#SpringBoot2 + spring-security-oauth3 使用示例,實(shí)現(xiàn)了以下四和授權(quán)模式。
(1)授權(quán)碼模式(Authorization Code)
(2)授權(quán)碼簡(jiǎn)化模式(Implicit)
(3)Pwd模式(Resource Owner Password Credentials)
(4)Client模式(Client Credentials)
項(xiàng)目提供的所有用戶(hù)和client 的密碼都為123456
#安裝運(yùn)行
導(dǎo)入oauth3.sql
修改 application.yml的數(shù)據(jù)源
運(yùn)行
mvn spring-boot:run
嘗試直接訪(fǎng)問(wèn)用戶(hù)信息
http://localhost:8080/user/info
提示需要認(rèn)證:
<oauth> <error_description> Full authentication is required to access this resource </error_description> <error> unauthorized </error> </oauth>
嘗試獲取授權(quán)碼
http://localhost:8080/oauth/authorize?client_id=client_3&response_type=code&scope=read&redirect_uri=http://localhost:8080/code?client_id=client_3
因?yàn)檫@里會(huì)彈出 HTTP Basic認(rèn)證,必須登錄的用戶(hù)才能申請(qǐng) code。
輸入用戶(hù)名和密碼
username=user_1
passpord=123456
如上用戶(hù)名密碼是交給 SpringSecurity 的主過(guò)濾器用來(lái)認(rèn)證的
登錄成功后,真正進(jìn)行授權(quán)碼的申請(qǐng)
oauth/authorize 認(rèn)證成功,會(huì)根據(jù) redirect_uri 執(zhí)行 302 重定向,并且?guī)仙傻?code,注意重定向到的是 8080 端口,這個(gè)時(shí)候已經(jīng)是另外一個(gè)應(yīng)用了。
http://localhost:8080/code?client_id=client_3&code=c3FbHM
代碼中封裝了一個(gè) http 請(qǐng)求, 使用 restTemplate 向 認(rèn)證服務(wù)器發(fā)送 token 的申請(qǐng),當(dāng)然是使用 code 來(lái)申請(qǐng)的,并最終成功獲取到 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 訪(fǎng)問(wèn) 用戶(hù) 信息
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 區(qū)別是 Implicit不需要驗(yàn)證client_secret,請(qǐng)求如果成功會(huì)直接返回 token
獲取授權(quán)碼
http://localhost:8080/oauth/authorize?response_type=token&client_id=client_4&scope=read&redirect_uri=http://localhost:8080/param
如果成功會(huì)重定向到URL(token在URL里)
http://localhost:8080/param#access_token=85090391-2c33-4a75-a989-116bb06b0c5a&token_type=bearer&expires_in=42962&scope=read
請(qǐng)求 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" }
請(qǐng)求 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" }
到此,關(guān)于“spring-security-oauth2的使用方法”的學(xué)習(xí)就結(jié)束了,希望能夠解決大家的疑惑。理論與實(shí)踐的搭配能更好的幫助大家學(xué)習(xí),快去試試吧!若想繼續(xù)學(xué)習(xí)更多相關(guān)知識(shí),請(qǐng)繼續(xù)關(guān)注創(chuàng)新互聯(lián)網(wǎng)站,小編會(huì)繼續(xù)努力為大家?guī)?lái)更多實(shí)用的文章!
分享題目:spring-security-oauth2的使用方法
網(wǎng)站網(wǎng)址:http://jinyejixie.com/article2/pppsic.html
成都網(wǎng)站建設(shè)公司_創(chuàng)新互聯(lián),為您提供網(wǎng)站收錄、微信公眾號(hào)、手機(jī)網(wǎng)站建設(shè)、網(wǎng)站制作、做網(wǎng)站、小程序開(kāi)發(fā)
聲明:本網(wǎng)站發(fā)布的內(nèi)容(圖片、視頻和文字)以用戶(hù)投稿、用戶(hù)轉(zhuǎn)載內(nèi)容為主,如果涉及侵權(quán)請(qǐng)盡快告知,我們將會(huì)在第一時(shí)間刪除。文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如需處理請(qǐng)聯(lián)系客服。電話(huà):028-86922220;郵箱:631063699@qq.com。內(nèi)容未經(jīng)允許不得轉(zhuǎn)載,或轉(zhuǎn)載時(shí)需注明來(lái)源: 創(chuàng)新互聯(lián)
營(yíng)銷(xiāo)型網(wǎng)站建設(shè)知識(shí)