Get LinkedIn User Info (OpenID Connect)
linkedin_get_user_infoGet basic LinkedIn user profile information like name, email, picture, and locale via OpenID Connect with minimal scopes, ensuring reliable identity verification.
Instructions
Get basic user identity information via OpenID Connect.
This works with the minimal "openid" scope and returns:
sub (unique member ID for your app)
name, given_name, family_name
email (if "email" scope is granted)
picture
locale
Unlike getMyProfile, this always works even with minimal scopes.
Args:
response_format ('markdown' | 'json'): Output format (default: 'markdown')
Returns (JSON format): { "sub": string, // Unique member ID "name": string, // Full name "givenName": string, // First name "familyName": string, // Last name "email": string, // Email address "emailVerified": boolean // Whether email is verified "picture": string, // Profile picture URL "locale": string // Locale }
Requires scope: openid (always available with Sign In with LinkedIn)
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| response_format | No | Output format: 'markdown' for human-readable or 'json' for machine-readable | markdown |