How do I scrape any website for creating a feed for my website? What format do most popular sites follow?

link|improve this question

feedback

2 Answers

You'd have to reverse-engineer each website, because they don't follow a common format or something (freedom of the web developer). What about just scraping their rss feeds?

link|improve this answer
how do i access a RSS feed for a youtube link for example? – Sussagittikasusa Nov 3 '10 at 7:04
@Sussagittikasusa what do you mean exactly? – joni Nov 3 '10 at 7:27
I want something like facebook does when you enter a link into its status bar and it loads a snapshot of the web page? – Sussagittikasusa Nov 3 '10 at 8:04
@Sussagittikasusa That's something totally different. What a snapshot? – joni Nov 3 '10 at 8:36
feedback

I don't believe many sites scrape for content, but if you wish to, I would go with RSS (Really Simple Syndication). Almost every website will have one, and the scraping from that is easy. RSS 2.0 Specification

Brian makes a nice post on a few ways to read RSS (in C#).

http://msdn.microsoft.com/en-us/library/bb943474.aspx

http://msdn.microsoft.com/en-us/library/system.servicemodel.syndication.syndicationfeed.aspx

http://msdn.microsoft.com/en-us/library/bb943480.aspx

Here are some web-based tools as well to make a single feed from combining multiple others.

Quoted the list here:

  1. RSS Mixer
  2. FeedBlendr
  3. FeedTwister
  4. BlogSieve
  5. RSSMesh
  6. RSS Mix
  7. BlastFeed
  8. Feed Combine
  9. FrankenFeed
  10. Yahoo Pipes

Hope this helps :)

link|improve this answer
So what does facebook basically do when you enter a link into its status bar and it loads a snapshot of the web page? – Sussagittikasusa Nov 3 '10 at 7:19
1  
Ah, I didn't realize you were going for a facebook type thing. From what I can tell (no references), Facebook just tries to get the page name (which, for this page is in html as :<title>Web scraping (HTML format of popular websites) - Stack Overflow</title>), all the main images (if you are in firefox try rightclick-view page info-media), and also and <h1> and/or<h2> <h3> tagged names. – Sprunth Nov 3 '10 at 7:38
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.