Icaro Caldeira

Results 17 comments of Icaro Caldeira

Looks like google completely changed the kr store as @ansoncen pointed out. The URL used by the lib is redirecting to `/apps`: `https://play.google.com/store/apps/top/category/GAME/?hl=ko&gl=kr` I'm not sure if this new store...

@LinqLover this is indeed for backward compatibility. Google seems to be returned the title in some old comments, and we can probably add the mappings again to have `null` or...

I found the comment, explaining why I did this https://github.com/facundoolano/google-play-scraper/pull/337#discussion_r322223733 I had this "documented" by a comment in reviews example, but it was probably lost. Going to add this again,...

If you are using the `.app` method you can use `genre` or `genreId` fields to check this I believe. On top of that, if you are using the `.list` method,...

What `list` does is basically fetch every app for a given category/collection, like this [link](https://play.google.com/store/apps/collection/cluster?clp=0g4mCiQKHnRvcHNlbGxpbmdfZnJlZV9BUlRfQU5EX0RFU0lHThAHGAM%3D:S:ANO1ljKKwsU&gsr=CinSDiYKJAoedG9wc2VsbGluZ19mcmVlX0FSVF9BTkRfREVTSUdOEAcYAw%3D%3D:S:ANO1ljK_3F0), for example. About search, it literally searches for a term at gplay. Maybe what you...

This should do what you want: ```js (async () => { const results = await gplay.search({ term: "Video Call", fullDetail: true, throttle: 60, num: 250, }); const communicationResultsOnly = results.filter((app)...

Hey, @danpostmail92 did you manage to do what you wanted?

@AdityaAnand1 can you provide a code sample?

@bfelbo @AdityaAnand1 #458 is now up for review