当前位置:  开发笔记 > 编程语言 > 正文

我想要一些我的Facebook帐户的数据,但它不允许我?

如何解决《我想要一些我的Facebook帐户的数据,但它不允许我?》经验,为你挑选了1个好方法。

我正在使用http://lite.facebook.com我希望从我的帐户中获取一些数据.我正在使用HttpWebRequest.

我可以使用网络请求从我的凭证登录到Facebook我从主页html获得了个人资料网址.

现在,当我想要获取所有朋友的列表时,它会将我踢出登录页面.

登录我正在使用此代码.

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);
        }

并获取Profile Url和FriendList Url Iam这样做

 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帮助我.



1> Matt..:

停止抓取HTML数据并使用他们的API

推荐阅读
可爱的天使keven_464
这个屌丝很懒,什么也没留下!
DevBox开发工具箱 | 专业的在线开发工具网站    京公网安备 11010802040832号  |  京ICP备19059560号-6
Copyright © 1998 - 2020 DevBox.CN. All Rights Reserved devBox.cn 开发工具箱 版权所有