Pulling in content?

Status
Not open for further replies.

stmadeveloper

New member
Aug 30, 2007
1,687
36
0
Where do you pull content in from when working with keywords? I've got a list of about a dozen and a half RSS feeds that work with keywords or search terms.

Where else do you pull content from especially when your working with keywords or key phrases?

Just to share and not beg: (list of keyword based feed sources... haven't checked some in a while but they are mostly good).


http://a9.com/{keyword}?sel=0
http://api.search.yahoo.com/ImageSearchService/rss/imageSearch.xml?appid=yahoosearchimagerss&query={k eyword}&adult_ok=1
http://api.search.yahoo.com/NewsSearchService/rss/blogSearch.xml?appid=YahooRSSSearch&query={keyword }&sort=date
http://api.search.yahoo.com/VideoSe...Search.xml?appid=ysearchblog&adult_ok=0&resul ts=50&query={keyword}
http://api.search.yahoo.com/WebSearchService/rss/webSearch.xml?appid=yahoosearchwebrss&query={keywo rd}
http://bigfeeder.com/rss/tag/{keyword}?subdomain=
http://blogsearch.google.com/blogsearch_feeds?hl=en&q={keyword}&ie=utf-8&num=10&output=rss
http://del.icio.us/rss/tag/{keyword}
http://feeds.technorati.com/feed/posts/tag/{keyword}
http://ma.gnolia.com/rss/full/tags/{keyword}
http://news.google.com/news?hl=en&ned=us&q={keyword}&ie=UTF-8&output=rss
http://news.search.yahoo.com/news/rss?p={keyword}&sm=Yahoo%21+Search&toggle=1&cop=&e i=UTF-8&eo=UTF-8
<![CDATA[eBay Search: (Error)]]> -US&output=RSS20&fsop=1&sacat=-1&fsoo=1&satitle={keyword}
http://rss.findory.com/rss/Blogs?q={keyword}
http://rss.findory.com/rss/News?q={keyword}
http://rss.topix.net/search/?q={keyword}&list=1&xml=1
http://rss.waypath.com/query.xml?mode=best&qs={keyword}
http://scuttle.org/rss.php/all/{keyword}
http://search.infocious.com/q?fmt=xml&s={keyword}
http://search.msn.com/news/results.aspx?q={keyword}&format=rss&FORM=RSNR
http://search.msn.com/results.aspx?format=rss&FORM=RSRE&q={keyword}
http://shopping.msn.com/xml/xmlresults/shp/?text={keyword},format=rss
http://video.google.com/videofeed?type=search&num=20&output=rss&q={keyword }
http://video.google.com/videofeed?type=search&num=20&output=rss&q={keyword }
http://www.blogdigger.com/media/rss.jsp?q={keyword}&media=video&media=audio&sortby =date
http://www.blogpulse.com/rss?sort=date&operator=and&query={keyword}
http://www.connotea.org/rss/tag/{keyword}
http://www.feedsfarm.com/s/{keyword}&format=rss
http://www.feedster.com/search/category/blog/{keyword}
http://www.feedster.com/search/type/rss/{keyword}
http://www.feedster.com/search/type/rss/category/news/{keyword}
http://www.feedster.com/search/type/rss/category/podcast/{keyword}
http://www.findarticles.com/p/search?qf=all&tb=art&x=21&y=12&pi=rss&qt={keyword}
http://www.flickr.com/services/feeds/photos_public.gne?format=rss_200&tags={keyword}
http://www.goarticles.com/cgi-bin/rss-search.cgi?search_content={keyword}&l=20&s=1&c=non e&D1=advanced
http://www.icerocket.com/search?tab=blog&q={keyword}&rss=1
http://www.icerocket.com/search?tab=news&q={keyword}&rss=1
http://www.icerocket.com/search?tab=web&rss=1&q={keyword}
http://www.rocketnews.com/news/RocketinfoXML.jsp?must={keyword}&age=0
http://www.rocketnews.com/news/RocketinfoXML.jsp?must={keyword}&age=4
http://www.shadows.com/rss/tags/{keyword}
http://www.sphere.com/rss?q={keyword}&datedrop=1&lang=en&x=0&y=0
http://www.wired.com/support/search.html?query={keyword}&src=wirednews&num=10&f irst=0&format=rss
 


I'm asuming here that each keyword is actually a whole query string such as

"key word one" + keywordtwo or keywordthree

PHP:
foreach ($feeds as $feed) {
    foreach ($keywords as $keyword) {
        $feed = str_replace("{keyword}", urlencode($keyword), $feed);
        /* fetch feed here */
   }
}
 
Yes and most of those listed use the + symbol as seperators for key phrases.

I've found if you go over two words it's a crap shoot if you get anything back.

I've never looped through em all on a single page - Usually generate my pages dynamically from a text file list and pull one of the feeds up randomly.
 
Status
Not open for further replies.