2014-07-05 31 views
0

我正在使用身份提供商2.0開發登錄應用程序。 我可以使用linkedin成功登錄到應用程序。如何使用身份提供商和asp.net MVC獲取linkedin個人資料信息5

現在我想從使用鏈接訪問令牌的用戶登錄的用戶獲得更多信息。

XmlDocument doc1 = new XmlDocument(); 
     doc1.Load("https://api.linkedin.com/v1/people/~:(id,first-name,last-name,certifications,date-of-birth,email-address,picture-url,summary,public-profile-url,positions,skills,location)?oauth2_access_token=" + ss); 

這個下載的基本的個人資料信息以及如何從linkedin下載完整資料?

謝謝

回答

0

你應該看看他們的API,它是有據可查的。您需要額外的權限才能檢索完整的個人資料。 LinkedIn Profile API

相關問題