diff --git a/Owin.Security.Providers/LinkedIn/LinkedInAuthenticationHandler.cs b/Owin.Security.Providers/LinkedIn/LinkedInAuthenticationHandler.cs index 83aaa4c..8ee881b 100644 --- a/Owin.Security.Providers/LinkedIn/LinkedInAuthenticationHandler.cs +++ b/Owin.Security.Providers/LinkedIn/LinkedInAuthenticationHandler.cs @@ -17,7 +17,7 @@ namespace Owin.Security.Providers.LinkedIn { private const string XmlSchemaString = "http://www.w3.org/2001/XMLSchema#string"; private const string TokenEndpoint = "https://www.linkedin.com/uas/oauth2/accessToken"; - private const string UserInfoEndpoint = "https://api.linkedin.com/v1/people/~:(id,first-name,last-name,formatted-name,email-address,public-profile-url)"; + private const string UserInfoEndpoint = "https://api.linkedin.com/v1/people/~:(id,first-name,last-name,formatted-name,email-address,public-profile-url,picture-url)"; private readonly ILogger logger; private readonly HttpClient httpClient;