How does Facebook prefetch url/feed content? - Stack Overflow most recent 30 from stackoverflow.com2009-12-19T05:12:31Zhttp://stackoverflow.com/feeds/question/1036197http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1036197/how-does-facebook-prefetch-url-feed-content1How does Facebook prefetch url/feed content?john2009-06-24T02:55:39Z2009-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#10362113Answer by Daniel A. White for How does Facebook prefetch url/feed content?Daniel A. White2009-06-24T03:02:04Z2009-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>