facundoolano / google-play-scraper

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

offersIAP is false instead of true #441

Open KaKi87 opened 3 years ago

KaKi87 commented 3 years ago

Description:

On some apps, scraper says they don't contain IAP while they do.

Example code:

require('google-play-scraper').app({ appId:'com.halfbrick.fruitninjax' }).then(console.log)

Error message:

None

PS : in case you're wondering, I'm not writing this kind of code in production, but that's the minimal reproductible example that works in Node console. 😉

jbigman commented 11 months ago

I've checked with

gplay.app({ appId: 'com.halfbrick.fruitninjax'})
      .then((app) => {
        assert.equal(app.offersIAP, true);
      });

It works correctly