0
我正在使用http://lite.facebook.com而我想從我的帳戶中獲取一些數據。 我爲此使用HttpWebRequest。我想要我的Facebook帳戶的一些數據,但它不允許我?
我能夠使用web請求從我的憑據登錄Facebook並且我從主頁html獲得了配置文件url。
現在,當我試圖獲得所有朋友的名單,然後它將我踢出登錄頁面。
登錄我正在使用此代碼。
string HtmlData = httpHelper.getHtmlfromUrl(new Uri(FacebookUrls.Lite_MainpageUrl));
lstInput = globussRegex.GetInputControlsNameAndValueInPage(HtmlData);
foreach (string str in lstInput)
{
if (str.Contains("lsd"))
{
int FirstPoint = str.IndexOf("name=\"lsd\"");
if (FirstPoint > 0)
{
TempHtmlData = str.Substring(FirstPoint).Replace("name=\"lsd\"","").Replace("value","");
}
int SecondPoint = TempHtmlData.IndexOf("/>");
if (SecondPoint > 0)
{
Value = TempHtmlData.Substring(0, SecondPoint).Replace("=", "").Replace("\\", "").Replace("\"", "").Replace(" ", "");
}
}
}
string LoginData = "form_present=1&lsd=" + Value + "&email=" + UserName + "&password=" + Password + "";
string ResponseData = httpHelper.postFormData(new Uri(FacebookUrls.Lite_LoginUrl), LoginData);
int FirstProfileTag = ResponseData.IndexOf("/p/");
int SecondProfileTag = ResponseData.IndexOf("\">Profile");
if (FirstProfileTag > 0 && SecondProfileTag > 0)
{
string TempProfileUrl = ResponseData.Substring(FirstProfileTag, SecondProfileTag - FirstProfileTag);
string ProfileUrl = FacebookUrls.Lite_ProfileUrl + TempProfileUrl;
GetUserProfileData(ProfileUrl);
}
和獲取資料URL和好友列表網址蔭做這
string HtmlData = httpHelper.getHtmlfromUrl(new Uri(ProfileUrl));
string FriendUrl = "http://lite.facebook.com" + "/p/Pankaj-Mishra/1187787295/friends/";
string HtmlData1 = httpHelper.getHtmlfromUrl(new Uri(FriendUrl));
我得到完美的結果,當我試圖爲ProfileUrl。 但是當我嘗試frindUrl其註銷如何解決這個問題 Plz幫助我。
感謝答覆 但API不會解決我的問題,請給想法HTTP請求 – 2010-04-01 23:10:38
爲什麼不會在API解決問題了嗎? – saramah 2010-04-01 23:23:48