Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
justauth
JustAuth
提交
441dda39
J
JustAuth
项目概览
justauth
/
JustAuth
1 年多 前同步成功
通知
394
Star
15212
Fork
2708
代码
文件
提交
分支
Tags
贡献者
分支图
Diff
Issue
0
列表
看板
标记
里程碑
合并请求
0
DevOps
流水线
流水线任务
计划
Wiki
0
Wiki
分析
仓库
DevOps
项目成员
Pages
J
JustAuth
项目概览
项目概览
详情
发布
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
Issue
0
Issue
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
Pages
DevOps
DevOps
流水线
流水线任务
计划
分析
分析
仓库分析
DevOps
Wiki
0
Wiki
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
创建新Issue
流水线任务
提交
Issue看板
提交
441dda39
编写于
6月 28, 2020
作者:
智布道
👁
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
📝
增加 领英 授权登录的文档
上级
b564ce8a
变更
8
隐藏空白更改
内联
并排
Showing
8 changed file
with
338 addition
and
2 deletion
+338
-2
docs/_sidebar.md
docs/_sidebar.md
+1
-1
docs/oauth/doc/media/oauth/161e6892.png
docs/oauth/doc/media/oauth/161e6892.png
+0
-0
docs/oauth/doc/media/oauth/36f2027e.png
docs/oauth/doc/media/oauth/36f2027e.png
+0
-0
docs/oauth/doc/media/oauth/ae91a519.png
docs/oauth/doc/media/oauth/ae91a519.png
+0
-0
docs/oauth/doc/media/oauth/dbb33b7a.png
docs/oauth/doc/media/oauth/dbb33b7a.png
+0
-0
docs/oauth/doc/media/oauth/de67b909.png
docs/oauth/doc/media/oauth/de67b909.png
+0
-0
docs/oauth/linkedin.md
docs/oauth/linkedin.md
+335
-0
docs/references.md
docs/references.md
+2
-1
未找到文件。
docs/_sidebar.md
浏览文件 @
441dda39
...
...
@@ -25,7 +25,7 @@
-
[
Google登录
](
oauth/google.md
)
-
[
Facebook登录
](
oauth/facebook.md
)
-
[
抖音登录
](
oauth/douyin.md
)
-
[
领英登录
](
oauth/linkedin.md
)
-
[
√
领英登录
](
oauth/linkedin.md
)
-
[
微软登录
](
oauth/microsoft.md
)
-
[
小米登录
](
oauth/mi.md
)
-
[
头条登录
](
oauth/toutiao.md
)
...
...
docs/oauth/doc/media/oauth/161e6892.png
0 → 100644
浏览文件 @
441dda39
54.3 KB
docs/oauth/doc/media/oauth/36f2027e.png
0 → 100644
浏览文件 @
441dda39
56.9 KB
docs/oauth/doc/media/oauth/ae91a519.png
0 → 100644
浏览文件 @
441dda39
41.1 KB
docs/oauth/doc/media/oauth/dbb33b7a.png
0 → 100644
浏览文件 @
441dda39
167.6 KB
docs/oauth/doc/media/oauth/de67b909.png
0 → 100644
浏览文件 @
441dda39
43.3 KB
docs/oauth/linkedin.md
0 → 100644
浏览文件 @
441dda39
## 1. 申请应用
### 1.1 创建第三方授权应用
1.
登录领英开发者中心:
[
领英开发者中心
](
https://www.linkedin.com/developers/
)
1.
点击“Create App”按钮创建应用
2.
填写基本信息。_注:本例为了演示,在选择公司时随便填了一个_
![](
doc/media/oauth/161e6892.png
)
5.
创建后进入应用详情页面,选择“Auth”标签,进入 OAuth 配置页面
![](
doc/media/oauth/de67b909.png
)
6.
配置回调地址
![](
doc/media/oauth/ae91a519.png
)
记录以下三个信息:
`Client ID`
、
`Client Secret`
和
`回调地址`
,后面我们会用到。
**重要提示:“应用密钥”可保护你应用程序的安全,因此请确保其不会泄露!也不要与任何人共享你的“应用密钥”!!!**
## 2. 集成JustAuth
### 2.1 引入依赖
```
xml
<dependency>
<groupId>
me.zhyd.oauth
</groupId>
<artifactId>
JustAuth
</artifactId>
<version>
${latest.version}
</version>
</dependency>
```
`${latest.version}`
表示当前最新的版本,可以在
[
这儿
](
https://github.com/justauth/JustAuth/releases
)
获取最新的版本信息。
### 2.2 创建Request
```
java
AuthRequest
authRequest
=
new
AuthLinkedinRequest
(
AuthConfig
.
builder
()
.
clientId
(
"Client ID"
)
.
clientSecret
(
"Client Secret"
)
.
redirectUri
(
"应用回调地址"
)
.
build
());
```
### 2.3 生成授权地址
我们可以直接使用以下方式生成第三方平台的授权链接:
```
java
String
authorizeUrl
=
authRequest
.
authorize
(
AuthStateUtils
.
createState
());
```
这个链接我们可以直接后台重定向跳转,也可以返回到前端后,前端控制跳转。前端控制的好处就是,可以将第三方的授权页嵌入到iframe中,适配网站设计。
### 2.4 以上完整代码如下
```
java
import
me.zhyd.oauth.config.AuthConfig
;
import
me.zhyd.oauth.request.AuthLinkedinRequest
;
import
me.zhyd.oauth.model.AuthCallback
;
import
me.zhyd.oauth.request.AuthRequest
;
import
me.zhyd.oauth.utils.AuthStateUtils
;
import
org.springframework.web.bind.annotation.PathVariable
;
import
org.springframework.web.bind.annotation.RequestMapping
;
import
org.springframework.web.bind.annotation.RestController
;
import
javax.servlet.http.HttpServletResponse
;
import
java.io.IOException
;
@RestController
@RequestMapping
(
"/oauth"
)
public
class
RestAuthController
{
@RequestMapping
(
"/render"
)
public
void
renderAuth
(
HttpServletResponse
response
)
throws
IOException
{
AuthRequest
authRequest
=
getAuthRequest
();
response
.
sendRedirect
(
authRequest
.
authorize
(
AuthStateUtils
.
createState
()));
}
@RequestMapping
(
"/callback"
)
public
Object
login
(
AuthCallback
callback
)
{
AuthRequest
authRequest
=
getAuthRequest
();
return
authRequest
.
login
(
callback
);
}
private
AuthRequest
getAuthRequest
()
{
return
new
AuthLinkedinRequest
(
AuthConfig
.
builder
()
.
clientId
(
"Client ID"
)
.
clientSecret
(
"Client Secret"
)
.
redirectUri
(
"回调地址"
)
.
build
());
}
}
```
授权链接访问成功后会看到以下页面内容:
![](
doc/media/oauth/36f2027e.png
)
点击“连接”即可完成百度的 OAuth 登录。
## 3. 授权结果
注:数据已脱敏
```
json
{
"code"
:
2000
,
"data"
:{
"avatar"
:
"https://media.licdn.cn/dms/image/C4D03AQGurJNmXSZU3w/profixxxWUhmytAdd9zUI"
,
"email"
:
"yadong.zhang0415@gmail.com"
,
"gender"
:
"UNKNOWN"
,
"nickname"
:
"亚东 张"
,
"rawUserInfo"
:{
"firstName"
:{
"localized"
:{
"zh_CN"
:
"亚东"
},
"preferredLocale"
:{
"country"
:
"CN"
,
"language"
:
"zh"
}
},
"lastName"
:{
"localized"
:{
"zh_CN"
:
"张"
},
"preferredLocale"
:{
"country"
:
"CN"
,
"language"
:
"zh"
}
},
"profilePicture"
:{
"displayImage"
:
"urn:li:digitalmediaAsset:C4D03AQGxxxSZU3w"
,
"displayImage~"
:{
"elements"
:[
{
"artifact"
:
""
,
"authorizationMethod"
:
"PUBLIC"
,
"data"
:{
"com.linkedin.digitalmedia.mediaartifact.StillImage"
:{
"storageSize"
:{
"width"
:
100
,
"height"
:
100
},
"storageAspectRatio"
:{
"widthAspect"
:
1.0
,
"heightAspect"
:
1.0
,
"formatted"
:
"1.00:1.00"
},
"mediaType"
:
"image/jpeg"
,
"rawCodecSpec"
:{
"name"
:
"jpeg"
,
"type"
:
"image"
},
"displaySize"
:{
"uom"
:
"PX"
,
"width"
:
100.0
,
"height"
:
100.0
},
"displayAspectRatio"
:{
"widthAspect"
:
1.0
,
"heightAspect"
:
1.0
,
"formatted"
:
"1.00:1.00"
}
}
},
"identifiers"
:[
{
"identifier"
:
""
,
"file"
:
""
,
"index"
:
0
,
"mediaType"
:
"image/jpeg"
,
"identifierType"
:
"EXTERNAL_URL"
,
"identifierExpiresInSeconds"
:
1599091200
}]
},
{
"artifact"
:
""
,
"authorizationMethod"
:
"PUBLIC"
,
"data"
:{
"com.linkedin.digitalmedia.mediaartifact.StillImage"
:{
"storageSize"
:{
"width"
:
200
,
"height"
:
200
},
"storageAspectRatio"
:{
"widthAspect"
:
1.0
,
"heightAspect"
:
1.0
,
"formatted"
:
"1.00:1.00"
},
"mediaType"
:
"image/jpeg"
,
"rawCodecSpec"
:{
"name"
:
"jpeg"
,
"type"
:
"image"
},
"displaySize"
:{
"uom"
:
"PX"
,
"width"
:
200.0
,
"height"
:
200.0
},
"displayAspectRatio"
:{
"widthAspect"
:
1.0
,
"heightAspect"
:
1.0
,
"formatted"
:
"1.00:1.00"
}
}
},
"identifiers"
:[
{
"identifier"
:
""
,
"file"
:
""
,
"index"
:
0
,
"mediaType"
:
"image/jpeg"
,
"identifierType"
:
"EXTERNAL_URL"
,
"identifierExpiresInSeconds"
:
1599091200
}]
},
{
"artifact"
:
""
,
"authorizationMethod"
:
"PUBLIC"
,
"data"
:{
"com.linkedin.digitalmedia.mediaartifact.StillImage"
:{
"storageSize"
:{
"width"
:
400
,
"height"
:
400
},
"storageAspectRatio"
:{
"widthAspect"
:
1.0
,
"heightAspect"
:
1.0
,
"formatted"
:
"1.00:1.00"
},
"mediaType"
:
"image/jpeg"
,
"rawCodecSpec"
:{
"name"
:
"jpeg"
,
"type"
:
"image"
},
"displaySize"
:{
"uom"
:
"PX"
,
"width"
:
400.0
,
"height"
:
400.0
},
"displayAspectRatio"
:{
"widthAspect"
:
1.0
,
"heightAspect"
:
1.0
,
"formatted"
:
"1.00:1.00"
}
}
},
"identifiers"
:[
{
"identifier"
:
""
,
"file"
:
""
,
"index"
:
0
,
"mediaType"
:
"image/jpeg"
,
"identifierType"
:
"EXTERNAL_URL"
,
"identifierExpiresInSeconds"
:
1599091200
}]
},
{
"artifact"
:,
"authorizationMethod"
:
"PUBLIC"
,
"data"
:{
"com.linkedin.digitalmedia.mediaartifact.StillImage"
:{
"storageSize"
:{
"width"
:
800
,
"height"
:
800
},
"storageAspectRatio"
:{
"widthAspect"
:
1.0
,
"heightAspect"
:
1.0
,
"formatted"
:
"1.00:1.00"
},
"mediaType"
:
"image/jpeg"
,
"rawCodecSpec"
:{
"name"
:
"jpeg"
,
"type"
:
"image"
},
"displaySize"
:{
"uom"
:
"PX"
,
"width"
:
800.0
,
"height"
:
800.0
},
"displayAspectRatio"
:{
"widthAspect"
:
1.0
,
"heightAspect"
:
1.0
,
"formatted"
:
"1.00:1.00"
}
}
},
"identifiers"
:[
{
"identifier"
:
""
,
"file"
:,
"index"
:
0
,
"mediaType"
:
"image/jpeg"
,
"identifierType"
:
"EXTERNAL_URL"
,
"identifierExpiresInSeconds"
:
1599091200
}]
}],
"paging"
:{
"count"
:
10
,
"start"
:
0
,
"links"
:[
]
}
}
},
"id"
:
"r9xxX"
},
"source"
:
"LINKEDIN"
,
"token"
:{
"accessToken"
:
"xxx"
,
"expireIn"
:
5183999
},
"username"
:
"亚东 张"
,
"uuid"
:
"r9xxxX"
}
}
```
## 3. 推荐
官方推荐使用
[
JustAuth-demo
](
https://github.com/justauth/JustAuth-demo
)
示例项目进行测试。
使用步骤:
1.
clone:
[
https://github.com/justauth/JustAuth-demo.git
](
https://github.com/justauth/JustAuth-demo.git
)
2.
将上面申请的应用信息填入到
`RestAuthController#getAuthRequest`
方法的对应位置中:
![](
doc/media/oauth/e1a40945.png
)
3.
启动项目,访问
[
http://localhost:8443
](
http://localhost:8443
)
4.
选择对应的平台进行授权登录
![](
doc/media/oauth/da2bc692.png
)
5.
登录完成后,可以访问
[
http://localhost:8443/users
](
http://localhost:8443/users
)
查看已授权的用户
![](
doc/media/oauth/dbe6bcae.png
)
注:
1.
如果直接使用 JustAuth-demo 项目进行测试,那么在配置测试应用的“回调地址”时要严格按照以下格式配置:
`http://localhost:8443/oauth/callback/{平台名}`
2.
平台名参考
`JustAuthPlatformInfo`
枚举类
`names`
docs/references.md
浏览文件 @
441dda39
...
...
@@ -24,7 +24,8 @@
-
<a
href=
"https://developers.google.com/identity/protocols/OpenIDConnect"
target=
"_blank"
>
Google
</a>
-
<a
href=
"https://developers.facebook.com/docs/facebook-login/manually-build-a-login-flow"
target=
"_blank"
>
Facebook
</a>
-
<a
href=
"https://www.douyin.com/platform/doc/m-2-1-1"
target=
"_blank"
>
抖音
</a>
-
<a
href=
"https://docs.microsoft.com/zh-cn/linkedin/shared/authentication/authorization-code-flow?context=linkedin/context"
target=
"_blank"
>
领英
</a>
-
<a
href=
"https://docs.microsoft.com/zh-cn/linkedin/shared/authentication/authorization-code-flow?context=linkedin/context"
target=
"_blank"
>
领英
</a>
-
<a
href=
"https://docs.microsoft.com/zh-cn/linkedin/shared/authentication/authorization-code-flow?context=linkedin/context"
target=
"_blank"
>
Sign In with LinkedIn
</a>
-
<a
href=
"https://docs.microsoft.com/zh-cn/graph/auth-v2-user"
target=
"_blank"
>
微软
</a>
-
<a
href=
"https://dev.mi.com/console/doc/detail?pId=711"
target=
"_blank"
>
小米
</a>
-
<a
href=
"https://open.mp.toutiao.com/#/resource?_k=y7mfgk"
target=
"_blank"
>
头条
</a>
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录