开发者

Authorize LinkedIn API access in window application [closed]

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center. Closed 10 years ago.

I am creating a wind开发者_开发问答ows application in C# and I want to search the profiles in LinkedIn. How can I handle the authorization?


LinkedIn supports OAuth, so you can start from there. Here's an example from their site.


You can webclient to pass datas to the linked in url

 WebClient wc = new WebClient();
 //call URL with your data
 var res = wc.UploadData("linkedinurl", System.Text.Encoding.ASCII.GetBytes(querystrings));
 //parse the returned results
 var result= System.Convert.ToInt32(Encoding.ASCII.GetString(res));


If LinkedIn supports OAuth you can check my FriendFeed Win Mobile application. I developed it with C# and Win Mobile 6.0 SDK and used OAuth to use FF Api.

http://ffwinmobile.codeplex.com/SourceControl/list/changesets

0

上一篇:

下一篇:

精彩评论

暂无评论...
验证码 换一张
取 消

最新问答

问答排行榜