Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

Screen-scraping, also known as web-scraping or data-scraping is a software technique use to collect and parse information from user interfaces.

learn more… | top users | synonyms (1)

0
votes
0answers
62 views

get facebook page full public photostream

there's only one similar question and it's not been answered. not for me at least. There are public pages on Facebook, suppose i want to get their photostream ? their album pictures ? I don't see how ...
0
votes
0answers
61 views

scraping a facebook application

We need to mobilized a facebook application for a client. because of this is still a POC, so we do not have the access to their code. My idea is to scrape their app directly from their server and ...
0
votes
1answer
149 views

Facebook scrape returns 502 error

I'm just trying to use standard link sharing using Facebook's sharer.php url. Here is a sample link: ...
0
votes
1answer
40 views

Reg Ex Facebook

I am trying to extract some information from facebook using Regex. Here is a link with an example: https://graph.facebook.com/210989592315921 I was interested in what would the regular expression be ...
1
vote
1answer
194 views

Get HTML source of a https page by forcing a user agent in Ruby

>>require 'net/https' >>uri = URI('https://www.facebook.com/careers/department?dept=product-management&req=a2KA0000000E147MAC') >>conn = Net::HTTP.new(uri.host, uri.port) ...
0
votes
1answer
91 views

php page scraping task

I use Simple HTML DOM library in my Drupal custom module to do a task in my project. The task simply is imitating the Facebook action, when we paste an article url, FB scrap the url and return back ...
1
vote
0answers
134 views

Is there anyway to scrape facebook account links from a list of several hunder URLs

I have a list of over 1500 URLs relating to news media sites in India. I was interested in conducting some stats as part of my college project. Long story short, I was interested in knowing which of ...
0
votes
1answer
172 views

Facebook Scrapes Beso.com so hard as to heavily impact site performance; how do we get FB to throttle its crawl?

Our site, Beso.com, which has 3MM UV a month, has started being hit by Facebook's crawler/scraper multiple times a day, to the point where it is causing a severe performance degradation on our site. ...
0
votes
1answer
112 views

Getting data of a facebook page one needs to login to see

I have a facebook page which contains data I want to be copied daily to my computer. The source code isn't accessible unless I connect to facebook account manually and goto that URL. How can that be ...
0
votes
2answers
743 views

Get user information on the Facebook profile page

I want to create a very basic C# application that can fetch publicly-available information for Facebook user profiles. I've read a few pages of Graph API but there is a problem. Here you can see a ...
3
votes
2answers
630 views

I need to scrape data from a facebook game - using ruby

Revised (clarified question) I've spent a few days already trying to figure out how to scrape specific information from a facebook game; however, I've run into brick wall after brick wall. As best as ...
1
vote
1answer
774 views

Screen scraping friend lists in Facebook, for Python

I require to obtain a list of FB friends of my friend... actually, of all my friends. The FB API won't let me get a list of friends of anyone who isn't me, but I can get these lists manually in my ...
0
votes
2answers
83 views

Who knows social media analytic services? [closed]

I'm looking for tools/sevices/apis who provide metrics to product names counted in facebook-comments, tweets or even in blog posts, or even better give an qualitive exposure of keywords which are ...
-1
votes
1answer
152 views

Scraping Facebook always gives me Login info data Android

Ok i know Facebook does not let us retrieve information like emails and phone numbers of our friends, but I am trying to get it through scrapping. Only problem is that I always end up getting html ...
0
votes
0answers
338 views

Web Scraping Facebook Android Application

if (sessionCookie != null) { cookieManager.setCookie("http://m.facebook.com", sessionCookie); CookieSyncManager.getInstance().sync(); } ...
0
votes
1answer
905 views

Object Debugger Error Scraping Page … near solution?

I have a very strange issue while sharing a page, probably connected to DNS used by Facebook. I usually share pages from my own sites with no problem. In only one new site, I cannot correctly share ...
-3
votes
1answer
1k views

Facebook page scraping

I am trying to scrap a facebook page ( https://www.facebook.com/pages/PTSD/455847705426 ) I found this script to login to facebook. <?php $EMAIL = "me@mail.com"; $PASSWORD = "facebookPassword"; ...
1
vote
2answers
588 views

add web scraper to wordpress site similar to facebook functionality

As I'm sure everyone is aware when you enter a url on facebook either in the status or when leaving a comment, it automatically retrieves an image from the article along with the title and meta ...
6
votes
1answer
3k views

Problems with web site scraping using zombie.js

I need to do some web scraping. After playing around with different web testing framework, of which most where either too slow (Selenium) or too buggy for my needs (env.js), I decided that zombie.js ...
0
votes
3answers
411 views

How to fill out AJAX form programmatically and scrape results?

Basically, I want to use the Facebook Ads Manager Tool to estimate the number of users targeted by a particular set of targeting parameters. I know there is a published API available, but it is only ...
0
votes
3answers
811 views

Data Scraping Problem

I am scraping data from facebook page for the wall posts, here is the url: http://www.facebook.com/GMHTheBook?v=wall&ref=ts#!/GMHTheBook?v=wall&ref=ts I sucessfully scraped all the visible ...
12
votes
7answers
11k views

Get data from a facebook page wall or group wall for use on personal website

I want to connect to public facebook page or group and list all entries from the wall on a personal website. I will use PHP on my server so that would be the best solution for me. Or javascript. ...
5
votes
1answer
374 views

Retrieving Facebook-like link summaries (title, summary, relevant images) using Python

I would like to replicate the functionality that Facebook uses to parse a link. When you submit a link into your Facebook status, their system goes out and retrieves a suggested title, summary and ...
1
vote
1answer
482 views

Facebook fan page photo's scraping

We want to add a facebook fan page photo competition to our fan page. The meaning is that ppl can upload photo's and others can like them. The person with the most likes on his photo wins a price. ...
1
vote
4answers
629 views

How do I automate navigation to a website that requires authentication?

Here's what I'm trying to achieve. I would like to write a script that will navigate to a website that requires me to be authenticated as myself, say Facebook, Live Spaces, Twitter or any other, and ...
2
votes
2answers
863 views

ruby mechanize in Facebook

I'm trying to click the Settings button on the home page, but when I do I get this page back: #<WWW::Mechanize::Page {url #<URI::HTTP:0x1023c5fc0 ...
2
votes
2answers
1k views

PHP/AJAX Image Grabbing script similar to functionality Facebook messaging

When sending a message on Facebook, if you include a URL it generally grabs a picture from the webpage and adds it at the bottom as a thumbnail. You then have the ability to select through a number of ...