Skip to content

Instantly share code, notes, and snippets.

@kopiro
Created June 27, 2011 22:23
Show Gist options
  • Save kopiro/1049999 to your computer and use it in GitHub Desktop.
Save kopiro/1049999 to your computer and use it in GitHub Desktop.
Read RSS with Google Api
jQuery.ajax({
url: "http://ajax.googleapis.com/ajax/services/feed/load?v=1.0&callback=?&q=" + encodeURIComponent(feedurl),
dataType: "json",
success: function (data) {
content = data.responseData.feed;
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment