Skip to content

Instantly share code, notes, and snippets.

@350d
Created January 12, 2016 15:03
Show Gist options
  • Select an option

  • Save 350d/f76d80b239313da009fe to your computer and use it in GitHub Desktop.

Select an option

Save 350d/f76d80b239313da009fe to your computer and use it in GitHub Desktop.

Revisions

  1. 350d created this gist Jan 12, 2016.
    15 changes: 15 additions & 0 deletions google_rss.js
    Original file line number Diff line number Diff line change
    @@ -0,0 +1,15 @@
    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);
    }
    )
    }