google-play-scraper
google-play-scraper copied to clipboard
app interface
- Operating System: centos 7.2
- Node version: v10.8.0
- google-play-scraper version: 7.1.1
Description:
I found a PKG that could not be obtained using the package
Example code:
// it failed
g.app({appId: "com.budgestudios.googleplay.ThomasAndFriendsMinis", lang: "en", country: "us"}).then(console.log)
// it was successful
https://play.google.com/store/apps/details?id=com.budgestudios.googleplay.ThomasAndFriendsMinis&hl=en&gl=us
Error message:
it can't find the PKG
Works for me
let data = {
appId : 'com.budgestudios.googleplay.ThomasAndFriendsMinis',
country : "us",
lang : "en",
};
gplay.app(data)
.then(
result => {
console.log(result);
}
)
BTW, «it can't find the PKG» is not error from this package.
Please, provide whole code.
Can't reproduce, should be closed.