Created
January 12, 2016 15:03
-
-
Save 350d/f76d80b239313da009fe to your computer and use it in GitHub Desktop.
Google RSS
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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