Code Examples
Response
Redirect to frontend with token
curl --request GET \
  --url https://server26-dot-royalti-project.uc.r.appspot.com/auth/linkedin/callbackThis response does not have an example.Callback URL that LinkedIn will redirect to after authentication
curl --request GET \
  --url https://server26-dot-royalti-project.uc.r.appspot.com/auth/linkedin/callbackThis response does not have an example.const response = await fetch('https://server26-dot-royalti-project.uc.r.appspot.com/auth/linkedin/callback', {
  method: 'GET',
});
const data = await response.json();
console.log(data);
Redirect to frontend with token