2010-09-27 61 views

回答

2

LinkedIn支持OAuth,所以你可以從那裏開始。這裏的an example從他們的網站。

0

可以webclient到DATAS通過在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));