facundoolano / google-play-scraper

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

Get data from APP, and comments return "null". #603

Open cuongsql opened 1 year ago

cuongsql commented 1 year ago

I get data from APP, but the comment section is having a null problem, not returning results. I need someone to fix it. (see the photo to understand what I mean better): var gplay = require('google-play-scraper');

gplay.app({appId: 'com.google.android.apps.translate'})

.then(console.log, console.log);

"comments": [ null, null, null, null, null ], https://i.imgur.com/LBp3Ryr.png

tpwatson commented 1 year ago

Are comments still a thing? Not seeing comments anywhere and never noticed them before. Are they still necessary? What are they used for?

jbigman commented 1 year ago

Fixed with PR #645 Comments were targeted in ds:9 but are located in ds:8

jonathansampson commented 1 month ago

This issue has regressed. @jbigman, comments are now in ds:9 again. Perhaps the extractor should check both ds:8 and ds:9 (one being a fallback if the other doesn't contain comments). Thoughts?