Skip to main content
GET
/
auth
/
linkedin
Initiate LinkedIn OAuth login
curl --request GET \
  --url https://api.royalti.io/auth/linkedin \
  --header 'Authorization: Bearer <token>'
This response does not have an example.

Code Examples

const response = await fetch('https://api.royalti.io/auth/linkedin', {
  method: 'GET',
});

const data = await response.json();
console.log(data);

Authorizations

Authorization
string
header
required

JWT Authorization header using the Bearer scheme. Format: "Bearer {token}"

Response

Redirect to LinkedIn OAuth consent screen