🗞 A node module (with browser support) that searches Google News RSS Feed and returns a usable JSON response
This is an unofficial, super easy to use node module / API client that allows a user to fetch a Google News RSS feed based on search terms and returns an easy to use JSON response. google-news-rss
also supports in-browser requests.
Coverts ⬇️
{
title: "Are there really antioxidants in that juice? How to protect against food fraud.",
description: "Regrettably, they are examples of food fraud that are perpetrated on unsuspecting Americans. The global food industry loses $10 billion to $15 billion per year through food substitutions, dilutions and fake labels, according to the Grocery ...",
pubDate: "Wed, 08 Jun 2017 07:01:30 GMT",
thumbnailUrl: "//t1.gstatic.com/images?q=tbn:ANd9GcS7OWziKD2Lc3zReERlqVcffAcgIuzzq723AR4zF807dKuqhzMY6EUEpQyzwGzHXpE05gGtFHNC",
publisher: "Washington Post",
link: "http://news.google.com/news/url?sa=t&fd=R&ct2=us&usg=AFQjCNEeo82SxlrQZP5SzjugGtJHFt36_g&clid=c3a7d30bb8a4878e06b80cf16b898331&ei=rCJqWYjEINKMzgKc_YDgCQ&url=https://www.washingtonpost.com/lifestyle/wellness/are-there-really-antioxidants-in-that-juice-how-to-protect-against-food-fraud/2017/06/07/fec98462-4554-11e7-bcde-624ad94170ab_story.html"
}
Install
$ npm install --save google-news-rss
Usage
const GoogleNewsRss = require('google-news-rss');
const googleNews = new GoogleNewsRss();
googleNews
.search('unicorns')
.then(resp => console.log(resp));
API
Type: class
Usage: new GoogleNewsRss()
Instance Methods
Returns: Promise
that resolves n
formatted articles
terms
Type: string
Search terms to search for within Google news. IE: ethereum,btc
num
Type: int
Default: 10
Number of results to be returned [1...30].
language
Type: string
Default: en
Language of the results within Google News. IE: pt-BR
Returns: Promise
that resolves 10 formatted articles
Type: object
Any additional query params that are appended to RSS url to refine the results. Please note, there aren't any officially documented parameters so your mileage may vary. Feel free to experiment with some of the params listed on this blog post provided by i-tweak.
Article Properties
Properties | Description | Example |
---|
title | Title of the article | Why don't unicorns exist? You asked Google – here's the answer ... - The Guardian |
link | Google news link to article | Article Link |
pubDate | Published date | Wed, 07 Jun 2017 07:01:30 GMT |
description | Short description of article | Why don't unicorns exist? You asked Google - here's the answer ... |
thumbnailUrl | Thumbnail Url. Omitted when not available. | //t2.gstatic.com/images?q=tbn:ANd9GcRa2NGl3_alXByd3kpnDDImMJFGeskk4Mf_AWZc-ohe_O8iEtmBs7hMxieldT_--jQWuDr4gQc |
publisher | Publisher of article | The Guardian |
License
MIT © Brandon Him