Asp.NET 中的 LinkedIN API

发布于 2024-11-14 17:54:32 字数 74 浏览 1 评论 0原文

有没有办法使用C#、VB.NET来实现LinkedIN API。 在使用上述技术时,我们需要调用链接的个人资料、公司、职位等 API。

Is there any way to implement LinkedIN API by using C#,VB.NET.
We need to call profile , companies ,Jobs etc API of linked in using mentioned technologies.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(4

恏ㄋ傷疤忘ㄋ疼 2024-11-21 17:54:32

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());  
}  

Linkedin have a REST based API - http://developer.linkedin.com/docs/DOC-1258

You can create a HttpWebRequest, pointed at a REST endoint, and parse the response however you wish.

// 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());  
}  
捎一片雪花 2024-11-21 17:54:32

在我看来,最好使用一些现有的 C# 包装器。查看 LinkedIn 开发者工具包

In my point of view it is better to use some existed c# wrapper. Look at LinkedIn Developer Toolkit.

红ご颜醉 2024-11-21 17:54:32

我正在开发 github 上的 LinkedInNET 库。 API 的覆盖范围并不完整,但正在不断扩大。

顺便说一句,有一个 NuGet 包。

PM> Install-Package Sparkle.LinkedInNET

I'm working on the LinkedInNET lib on github. The API coverage is not full but it's growing.

There is a NuGet package btw.

PM> Install-Package Sparkle.LinkedInNET
安静 2024-11-21 17:54:32

Spring.NET Social(LinkedIn 扩展) 是迄今为止我用过的最好的 LinkedIn API 客户端用过的。它是 Spring.NET Social 的扩展。

尽管您始终可以使用自己的使用者/其他第 3 方 REST API 使用者(例如 RestSharp)来使用 LinkedIn REST API,但我会可以说,将 Spring.NET REST 与 LinkedIn API 客户端结合使用是一件轻而易举的事。

Spring.NET Social (LinkedIn extension) is so far, the best LinkedIn API Client I've used. It's an extension of Spring.NET Social.

Although you can always consume the LinkedIn REST API using your own consumer/other 3rd party REST API consumer such as RestSharp, I would say that using Spring.NET REST combined with this LinkedIn API Client is a breeze.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文