This question already has answers here:
Using the LinkedIn API in a C# application

(3个答案)


已关闭6年。




有没有办法通过使用C#,VB.NET来实现LinkedIN API。
我们需要使用所提到的技术来调用个人资料,公司,工作等链接的API。

最佳答案

Linkedin具有基于REST的API-http://developer.linkedin.com/docs/DOC-1258

您可以创建一个HttpWebRequest,指向REST端点,然后根据需要解析响应。

// Create the web request
HttpWebRequest request = WebRequest.Create("http://api.linkedin.com/v1/people/~/connections/") as HttpWebRequest;

// Get response
using (HttpWebResponse response = request.GetResponse() as HttpWebResponse)
{
    // Get the response stream
    StreamReader reader = new StreamReader(response.GetResponseStream());

    // Console application output
    Console.WriteLine(reader.ReadToEnd());
}

关于c# - Asp.NET中的LinkedIN API,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/6278603/

10-13 06:20