facundoolano / google-play-scraper

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

Reviews text & title #77

Closed zhuchinskyi closed 8 years ago

zhuchinskyi commented 8 years ago

I took your basic sample and cant receive reviews fields: title and text. They are empty every time for any package including 'com.mojang.minecraftpe'.

console.log('userId: ' + apps[i].userId ); console.log('userName: ' + apps[i].userName ); console.log('date: ' + apps[i].date ); console.log('score: ' + apps[i].score ); console.log('title: ' + apps[i].title ); console.log('text: ' + apps[i].text');

facundoolano commented 8 years ago

Hi, this is a bug that was fixed recently, I just published a new version (0.3.1) including that fix, can you try again with that version and let me know if it works?

zhuchinskyi commented 8 years ago

Amazing, works like a charm, thanks for quick fix!