Skip to content

Instantly share code, notes, and snippets.

@350d
Created January 12, 2016 15:03
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save 350d/f76d80b239313da009fe to your computer and use it in GitHub Desktop.
Save 350d/f76d80b239313da009fe to your computer and use it in GitHub Desktop.
Google RSS
function getRSS(url) {
$.getJSON('http://www.google.com/uds/Gfeeds',
{
context: 0,
num: 10,
hl: 'en',
output: 'json',
v: '1.0',
nocache: 0,
q: url
},function(json) {
console.log(json);
}
)
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment