Back to Explorer

LinkedIn OAuth & OIDC endpoints

LinkedIn OAuth & OIDC endpoints and related development resources

LinkedIn OIDC discovery endpoint

https://www.linkedin.com/oauth/.well-known/openid-configuration
The well-known endpoint (.well-known/openid-configuration) that provides OpenID Connect configuration metadata, including all available endpoints and supported features.

LinkedIn issuer URL

https://www.linkedin.com/oauth
A unique identifier URL that identifies the OAuth/OIDC provider and is used to validate tokens

LinkedIn authorization endpoint

https://www.linkedin.com/oauth/v2/authorization
The endpoint to redirect users to in order to grant your application access to their account.

LinkedIn token endpoint

https://www.linkedin.com/oauth/v2/accessToken
The endpoint to exchange the authorization code or refresh token for an access token and a refresh token.

LinkedIn userinfo endpoint

https://api.linkedin.com/v2/userinfo
The standardized OAuth endpoint that returns authenticated user profile information, including claims about the current user based on the scope of access token.

LinkedIn JWKS URI

https://www.linkedin.com/oauth/openid/jwks
The URI that provides public keys for verifying JWT tokens. These keys are used to validate the authenticity of tokens issued by the authorization server.

LinkedIn OAuth & OIDC documentation and resources