facundoolano / google-play-scraper

Node.js scraper to get data from Google Play
MIT License
2.3k stars 626 forks source link

score, ratings, reviews and histogram appears to be 0 for some apps (for eg - 'snkt.radhe.alllanguagestranslation') #530

Closed namanappbroda011 closed 2 years ago

namanappbroda011 commented 2 years ago

Description:

Even though this app has 100k+ downloads and play store showing its rating, scraper can't scrape the data and showing 0 instead.

Example code:

// Try this
 gplay.app({appId: 'snkt.radhe.alllanguagestranslation'})
  .then(console.log, console.log);

Output

  minInstalls: 100000,
  maxInstalls: 244770,
  score: 0,
  scoreText: '0.0',
  ratings: 0,
  reviews: 0,
  histogram: { '1': 0, '2': 0, '3': 0, '4': 0, '5': 0 },
  price: 0,

Error message:

Put error message here
srikanthlogic commented 2 years ago

When you pass country param, it works. Noticed this in few apps, don't know if its related to some developer settings image

namanappbroda011 commented 2 years ago

Yes by inserting the params it worked! Thanks alot