google-trends-api icon indicating copy to clipboard operation
google-trends-api copied to clipboard

Why can't I get the data of 2019-07-01~2019-07-31 by using dailyTrends Api

Open fortune-cook1e opened this issue 5 years ago • 0 comments

  googleTrends.dailyTrends({
    trendDate: new Date('2019-07-01'),
    geo: 'US',
  }, function(err, results) {
    if (err) {
      console.log(err);
    }else{
      console.log(results);
    }
  });

The result

{"default":{"trendingSearchesDays":[]}}

fortune-cook1e avatar Sep 24 '19 06:09 fortune-cook1e