Click here to Skip to main content
15,913,090 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
Please help me in getting connections of a person on linked in
Posted
Comments
bbirajdar 5-Jul-13 6:01am    
A few simple rules when posting your question.

Have you searched or Googled for a solution?
Be specific! Don't ask "I need to write a booking application". Specify exactly what it is you need help with.
Keep the subject brief but descriptive. eg "How do I change the dialog colour?"
Keep the question as concise as possible. If you have to include code, include the smallest snippet of code you can - do not dump your entire codebase.

1 solution

Don't post question for entire project solution .
Search in google to find a solution for that.
Here, i gave you a link to help for your project.

1) 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.

C#
// 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());  
}  
 
Share this answer
 
Comments
Member 10141584 8-Jul-13 3:11am    
i am getting 401 unauthorized error..can you help?
Nirav Prabtani 8-Jul-13 3:15am    
see this...:)

http://www.iis.net/learn/get-started/planning-for-security/understanding-built-in-user-and-group-accounts-in-iis

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900