溫馨提示×

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

密碼登錄×
登錄注冊(cè)×
其他方式登錄
點(diǎn)擊 登錄注冊(cè) 即表示同意《億速云用戶服務(wù)條款》

spring-security-oauth2的使用方法

發(fā)布時(shí)間:2021-07-08 17:43:37 來(lái)源:億速云 閱讀:182 作者:chen 欄目:大數(shù)據(jù)

這篇文章主要介紹“spring-security-oauth2的使用方法”,在日常操作中,相信很多人在spring-security-oauth2的使用方法問(wèn)題上存在疑惑,小編查閱了各式資料,整理出簡(jiǎn)單好用的操作方法,希望對(duì)大家解答”spring-security-oauth2的使用方法”的疑惑有所幫助!接下來(lái),請(qǐng)跟著小編一起來(lái)學(xué)習(xí)吧!

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)目提供的所有用戶和client 的密碼都為123456

#安裝運(yùn)行

導(dǎo)入oauth3.sql

修改 application.yml的數(shù)據(jù)源

運(yùn)行

mvn spring-boot:run

授權(quán)碼模式(Authorization Code)使用說(shuō)明

  1. 嘗試直接訪問(wèn)用戶信息

http://localhost:8080/user/info

提示需要認(rèn)證:

<oauth>
	<error_description>
		Full authentication is required to access this resource
	</error_description>
	<error>
		unauthorized
	</error>
</oauth>
  1. 嘗試獲取授權(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)證,必須登錄的用戶才能申請(qǐng) code。

  1. 輸入用戶名和密碼

username=user_1

passpord=123456

如上用戶名密碼是交給 SpringSecurity 的主過(guò)濾器用來(lái)認(rèn)證的

  1. 登錄成功后,真正進(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
}
  1. 攜帶 access_token 訪問(wèn) 用戶 信息

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
}

授權(quán)碼簡(jiǎn)化模式(Implicit) 使用說(shuō)明

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

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

請(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"
}

Client模式(Client Credentials)使用說(shuō)明

請(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)注億速云網(wǎng)站,小編會(huì)繼續(xù)努力為大家?guī)?lái)更多實(shí)用的文章!

向AI問(wèn)一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如果涉及侵權(quán)請(qǐng)聯(lián)系站長(zhǎng)郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI