facundoolano / google-play-scraper

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

Country argument not functioning in reviews/reviews_all #662

Closed jasonhuynh8 closed 1 year ago

jasonhuynh8 commented 1 year ago

Description:

It seems the country argument isn't functioning as expected. Even in the provided example, changing the country doesn't alter the output – the same review is displayed regardless of the specified country setting.

Example code:

de_review, _ = reviews(
    'com.mistplay.mistplay',
    country='de', # defaults to 'us'
    sort=Sort.NEWEST, # defaults to Sort.MOST_RELEVANT
)
us_review, _ = reviews(
    'com.mistplay.mistplay',
    country='us', # defaults to 'us'
    sort=Sort.NEWEST, # defaults to Sort.MOST_RELEVANT
)

print(de_review[0])
print(us_review[0])

Error message:

The country argument seems to be not working. As in the example above, the output of both show the same review even when the country is specified differently.