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.
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:
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.