Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Is it possible to get an rss feed using javascript client side scripting only? [closed]

If I can't do this would the process for getting the data be: 1) Have my server get the rss data from the desired rss feed. 2) Have the server parse the data. I don't know what rss looks like but I assume some parsing is needed to display it for a user to read. 3) Send the data to the javascript client.

like image 513
Xavier Avatar asked Sep 17 '25 22:09

Xavier


2 Answers

Or you can use the API of Google Feed to load a RSS Feed and parse it as you need. :) I think is a interesting option.

http://code.google.com/intl/es-ES/apis/feed/v1/devguide.html#load_the_javascript_api_and_ajax_search_module

like image 108
midudev Avatar answered Sep 19 '25 10:09

midudev


You can use Yahoo's YQL system just for this. A decent link via Google:

http://www.wait-till-i.com/2008/12/12/yql-is-so-the-bomb-to-get-web-data-as-xml-or-json/

like image 32
Funkatron Avatar answered Sep 19 '25 10:09

Funkatron