File tree 4 files changed +17
-0
lines changed
backend/src/api/resources
clerk-js/src/ui/utils/test
4 files changed +17
-0
lines changed Original file line number Diff line number Diff line change
1
+ ---
2
+ ' @clerk/clerk-js ' : minor
3
+ ' @clerk/backend ' : minor
4
+ ' @clerk/types ' : minor
5
+ ---
6
+
7
+ Add support for LinkedIn OIDC
Original file line number Diff line number Diff line change @@ -9,6 +9,7 @@ export type OAuthProvider =
9
9
| 'twitter'
10
10
| 'twitch'
11
11
| 'linkedin'
12
+ | 'linkedin_oidc'
12
13
| 'dropbox'
13
14
| 'bitbucket'
14
15
| 'microsoft'
Original file line number Diff line number Diff line change @@ -116,6 +116,7 @@ const socials = Object.freeze(
116
116
'oauth_twitter' ,
117
117
'oauth_twitch' ,
118
118
'oauth_linkedin' ,
119
+ 'oauth_linkedin_oidc' ,
119
120
'oauth_dropbox' ,
120
121
'oauth_atlassian' ,
121
122
'oauth_bitbucket' ,
Original file line number Diff line number Diff line change @@ -19,6 +19,7 @@ export type DiscordOauthProvider = 'discord';
19
19
export type TwitterOauthProvider = 'twitter' ;
20
20
export type TwitchOauthProvider = 'twitch' ;
21
21
export type LinkedinOauthProvider = 'linkedin' ;
22
+ export type LinkedinOIDCOauthProvider = 'linkedin_oidc' ;
22
23
export type DropboxOauthProvider = 'dropbox' ;
23
24
export type AtlassianOauthProvider = 'atlassian' ;
24
25
export type BitbucketOauthProvider = 'bitbucket' ;
@@ -45,6 +46,7 @@ export type OAuthProvider =
45
46
| TwitterOauthProvider
46
47
| TwitchOauthProvider
47
48
| LinkedinOauthProvider
49
+ | LinkedinOIDCOauthProvider
48
50
| DropboxOauthProvider
49
51
| AtlassianOauthProvider
50
52
| BitbucketOauthProvider
@@ -109,6 +111,12 @@ export const OAUTH_PROVIDERS: OAuthProviderData[] = [
109
111
name : 'LinkedIn' ,
110
112
docsUrl : 'https://clerk.com/docs/authentication/social-connection-with-linkedin' ,
111
113
} ,
114
+ {
115
+ provider : 'linkedin_oidc' ,
116
+ strategy : 'oauth_linkedin_oidc' ,
117
+ name : 'LinkedIn' ,
118
+ docsUrl : 'https://clerk.com/docs/authentication/social-connections/linkedin-oidc' ,
119
+ } ,
112
120
{
113
121
provider : 'github' ,
114
122
strategy : 'oauth_github' ,
You can’t perform that action at this time.
0 commit comments