我正在用C#创建一个Windows应用程序,我想在LinkedIn中搜索配置文件。我该如何处理授权?
答案 0 :(得分:2)
LinkedIn支持OAuth,因此您可以从那里开始。这是他们网站的an example。
答案 1 :(得分:0)
您可以webclient将数据传递到linkedin网址
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));
答案 2 :(得分:0)
如果LinkedIn支持OAuth,您可以查看我的FriendFeed Win Mobile应用程序。 我使用C#和Win Mobile 6.0 SDK开发了它,并使用OAuth来使用FF Api。
http://ffwinmobile.codeplex.com/SourceControl/list/changesets