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.
This tag refers to the technique used to extract information from content intended for human consumption. Most commonly refers to extracting data from websites.
1
vote
2answers
46 views
Scrape facebook fan page
I'm trying to scrape a facebook fanpage using curl in php but it just give's me a blank page.
here is my code.
function curlFunction($source_url){
$ch = curl_init();
$userAgent = 'Mozilla/5.0 ...
0
votes
0answers
58 views
Why doesn't Facebook like the responses from our server?
We are trying to implement some Facebook functionality, but the Facebook code doesn't like the response sent back for some reason. Testing using other methods all get a 200 response, so it's quite ...
1
vote
1answer
134 views
Updating existing timeline posts using Facebook's Open Graph API
Is a POST to graph.facebook.com/?id={id}&scrape=true (as documented here) supposed to expire cache and update already-published timeline data immediately?
I have noticed in my case that when I ...
0
votes
1answer
132 views
Scrape new page using opengraph and curl
I am developing a website in which i have created a blog, on that blog people can comment via their facebook. Now i noticed that whenever i create a new blog, the comments plugin shows a warning "url ...
0
votes
1answer
64 views
“Score passing stories” in User's Recent Activities show wrong application title. How can I scrape it?
I'm developing an iOS native App with Facebook SDK 3.1 and I recently removed the canvas settings and submitted my app for App Center.
Everything now points to the app center page, everything except ...
0
votes
3answers
171 views
Facebook LIke update through Ajax - not simple issue
I have created a video page that loads videos dynamically using a database while the files are stored on the server. A video is preloaded on the page and that data can be Liked and posted to Facebook ...
2
votes
2answers
85 views
Positive Scraping [closed]
BACKGROUND:
I'm part of a music sharing (links TO gs/yt on pirating) group on facebook. Each day up to 20 members each post a link to a song that they think the community will like, and so we grow in ...
2
votes
0answers
82 views
java html scrape the facebook way
When you post a link to facebook, it shows a small thumbnail and a description of the content of that page.
I know it uses og meta tags in html pages, but sometimes even though these meta tags are ...
0
votes
1answer
168 views
Scrape images from wall photo album on facebook
Is it possible to scrape the pictures and titles of an album of a facebook group? Any ideas or know a good tutorial to get going with this?
-2
votes
1answer
122 views
Facebook like is broken, adds a trailing # to the final url
I'm running my site on Cargo Collective and trying to have likes per page. I cannot modify the code in the head tag only within the body tag.
When i debug a page i get the following;
Response Code ...
0
votes
1answer
638 views
Facebook Linter returns 'Error Parsing URL: Error parsing input URL, no data was scraped.'
facebook returns "Error Parsing URL: Error parsing input URL, no data was scraped." when I use Facebook Linter. I already tried taking away the meta tags then putting them back in. I can't get this ...
5
votes
1answer
503 views
Remotely Scrape Page and Get most Relevant title or Description for Images with XPath
What I'm looking at doing is essentially the same thing a Tweet button or Facebook Share / Like button does, and that is to scrape a page and the most relevant title for a piece of data. The best ...
1
vote
0answers
116 views
FB wont scrape a php version but will the html version
I have a really weird issue here. No matter what I do, even using a simmple basic test page, facebook returns a 206 error and wont scrape my test.php page.
If I simply change the extension to ...
0
votes
2answers
389 views
I can't get Facebook to scrape links I post to my blog
None of the right pictures show up when I post a link on Facebook to a blog post I've made. I've tried to add og tags to all sorts of things in my blog code and nothing has worked. Help!
I tried the ...
0
votes
1answer
129 views
Scrape a Facebook Group Document
background: My friend has a minecraft server with a white list. The community for that server is managed with a facebook group, and the white list is a facebook document within that group.
...
0
votes
2answers
2k views
like button for my website isn't using correct information
I am designing a blog using blogger for a fundraiser my team is doing. I have purchased a domain through godaddy "solematesforlife.org" which i have aimed at my blog "solemateswalk.blogspot.com".
...
0
votes
1answer
689 views
How to scrape Facebook advertising data?
Facebook provides data about demographics via their advertising platform. How to scrape it (using Python)?
1.) go to http://www.facebook.com/ads/create/
2.) fill in the forms
3.) now, there is data
...
0
votes
1answer
2k views
Facebook can't scrape my page and linter tool says document returns no data
Can anybody tell me why Facebook doesn't scrape my page, and also the debug/linter tools cant scrape it? I've searched and searched and can't find a way to fix it.
As far as I can tell all the og:tags ...
0
votes
1answer
673 views
Why are Facebook Likes insisting on using the wrong product image…?
My website, http://www.joaniesgifts.co.uk, includes the like button on the product pages. However, I've found that certain product pages are using the incorrect image when a user likes the page. This ...
0
votes
2answers
916 views
Extract Links from Facebook activity feed
I'm trying to get the links from a facebook activity feed, i've tried extracting the HTML from the iframe, but this doesn't work because of cross domain. Then I tried cURL but that doesn't work ...