wget for fetching Facebook profile/friend pages

16,347

Solution 1

First, Facebook have probably created a condition where certain user agents (e.g. wget) cannot crawl the pages. So they redirect certain user agents yo a different page which would probably say something like "your browser is not supported" They do that to protect people from doing exactly what you are doing. However you can tell wget to identify itself as a different agent using -U argument to wget (read the wget man page). e.g. wget -U Mozilla http://....

Second, Facebooks privacy setting rarely allows you to read any/much information unless you are logged in as a user, and probably only as a user who is friend to the profile you are trying to scrape.

Thridly, there is an Facebook API which you need to use to crawl and extract information from facebook -- you are likely in violation of the Acceptable Use policy if you try to obtain information in any other way.

Solution 2

I donno why you want to use wget ..facebook offers an excellent API .

wget --user-agent=Firefox http://www.facebook.com/markzuckerberg

will save the publicly available content to a file.

you should consider using their API.

Facebook Developers

Solution 3

Check the following open-source projects:

  • facebook-cli, it's a command-line utility to interact with the Facebook API.
  • facebook-friends which can generate an HTML page of all of your Facebook friends.

Solution 4

If you want to save the logged in page, you can log in with Firefox with "Keep me logged in" selected, then copy those cookies to a file and use them with the cookiejar option. You will still have quite a bit of dynamic script loaded content that WGET isn't going to save.

There's many ways to skin this cat. If you need to extract a specific item, check out the API. If you're simply wanting to archive a snapshot of the page as it would appear in a web browser, try CutyCapt. It's much like wget, except it parses the entire document as a web broswer would and stores an image of the page.

Share:
16,347
rogerchucker
Author by

rogerchucker

Updated on June 22, 2022

Comments

  • rogerchucker
    rogerchucker almost 2 years

    I am trying to fetch facebook a user's profile page using "wget" but keep getting a non-profile page called "browser.php" which has nothing to do with that particular user. The profile page's URL as I see in the browser happens to be of the following format:

    http://www.facebook.com/user-name

    and that's what I have been using as the argument to the wget command:

    wget http://www.facebook.com/user-name

    I am also interested in using wget to fetch a user's friends' list but even that is giving me the same unhelpful result ("browser.php"):

    wget http://www.facebook.com/user-name?sk=friends&v=friends

    Could someone kindly advise me what I'm doing wrong here? In other words, am I missing out some key options for wget command or does wget not fit such a scenario at all?

    Any help will be greatly appreciated.

    To add context to this query, I need to figure out how to fetch these pages from Facebook using wget as it would then help me write a script/program to look up friends' profile URLs from the HTML source code and then look up some other keywords on them, etc. I am basically hoping that this would help me in doing some kind of selective-crawling (with Facebook's permission of course) of people I am not connected to.

  • rogerchucker
    rogerchucker almost 13 years
    Thanks Krish. Unfortunately that doesn't work since it gives me a file (where the filename is the username) that doesn't have the information that Also if I was "lying" to Facebook by changing the user-agent wouldn't Facebook actually object when seeking real permission for crawling (since that's my final objective)? I am trying to use wget because I don't know anything else. Any other suggestion would be greatly helpful as well - I am looking for anything that could work from within a script or a program.
  • rogerchucker
    rogerchucker almost 13 years
    If a person who is not in my network publishes her friends' list, then is it still a private information from Facebook's perspective?
  • rogerchucker
    rogerchucker almost 13 years
    I was first thinking of going the Facebook API route (specifically the Graph API), but it seems like all friends information requires access-token and I wanted to do this unobtrusively. Would this be in violation of Facebook's policy even if it is a strictly academic research?
  • rogerchucker
    rogerchucker almost 13 years
    Krish, Facebook API requires access-token of every user whose profile I'm trying to fetch. That would be impractical in an unobtrusive data collection.
  • Soren
    Soren almost 13 years
    The general rule for facebook data via the Facebook API is simple -- if you can get it via the Facebook API, then it is either data which you have been granted access to or data which is public. Most of the facebook APIs will allow you to ask for data from a user, and the API will return the data which you have asked and which you are allowed to see. hence you application when dealing with facebook data should be build so that it can accept data and no-data being returned for similar requests.
  • Soren
    Soren almost 13 years
    @user611846 -- Im not sure if there is a precise line where Facebook consider it violation of TOS (I have no affiliation with Facebook), however I believe they are looking at abnormal behaviour patterns, and react as per their discression. Many companies do however want to support accademic research, and they often have programs for such where they will put contractual conditions in place and potentially grant you some access to some anonymized data -- if this is truly for academic research, then why don't you contact facebook directly and ask if they have such program?