How does Facebook prefetch url/feed content? - Stack Overflow most recent 30 from stackoverflow.com 2009-12-19T05:12:31Z http://stackoverflow.com/feeds/question/1036197 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1036197/how-does-facebook-prefetch-url-feed-content 1 How does Facebook prefetch url/feed content? john 2009-06-24T02:55:39Z 2009-06-24T03:36:11Z <p>I posted a url to a blog post in a Facebook message <a href="http://www.autoblog.com/2009/06/22/we-are-all-bumblebee-beijing-transformers-fans-gather-to-celebr/" rel="nofollow">http://www.autoblog.com/2009/06/22/we-are-all-bumblebee-beijing-transformers-fans-gather-to-celebr/</a> and Facebook inlined the title and abbreviated text as if it fetched them from the rss feed <a href="http://www.autoblog.com/rss.xml" rel="nofollow">http://www.autoblog.com/rss.xml</a> but when I submitted the link the blog post was already expired out of the feed - I checked.</p> <p>see this screenshot: <a href="http://i43.tinypic.com/nwbu4m.jpg" rel="nofollow">http://i43.tinypic.com/nwbu4m.jpg</a></p> <p>Is it using a feedburner search? How can this be similarly accomplished?</p> <p>cheers</p> http://stackoverflow.com/questions/1036197/how-does-facebook-prefetch-url-feed-content/1036211#1036211 3 Answer by Daniel A. White for How does Facebook prefetch url/feed content? Daniel A. White 2009-06-24T03:02:04Z 2009-06-24T03:36:11Z <p>I think they do some advanced scraping looking for the most significant blocks of data and HTML and using that. Basically, they analyze everything quickly, toss out ads, etc. and use the big blobs of data.</p> <p>Digg is doing similar things aswell.</p> <p>I would do this to implement it.</p> <ol> <li>Scan for meta tags, rss feed tags, and the title tag.</li> <li>Find large "areas" with a lot of content. Also include <code>p</code> tags. Weight or grade them on the likelihood of them being content. Look for keyword css classes/id (e.g. rate "content" higher than "ads" or "navigation"</li> <li>Look for large images</li> <li>Store information about the site for future use and improved heuristics </li> </ol> <p>This is all done on the server-side likely, and served to the browser using AJAX.</p>