Domenico Iezzi
Domenico Iezzi
As stated in the README, googleplay_pb2.py is dynamically generated during build. You need to install the protobuf package in your system and run python setup.py build or just build it...
What package are you trying to download? If it is a paid app, and you never purchased it on regular Play Store, it will give you a `App not purchased`...
Not sure, with latest commit I can succesfully download that app with this code ``` test = server.details('com.denite.watchface.diamondelegance') fl = server.download(test['docId'], test['versionCode'], progress_bar=True) with open(test['docId'] + '.apk', 'wb') as f:...
IMO if we keep using user agent for old Play Store version, we shouldn't encounter this problem. For example, if I update the user agent with a more recent Play...
Yesterday I was updating device.properties values with those found in [play-store-api](https://github.com/yeriomin/play-store-api/tree/master/src/main/resources), since it contains more up-to-date values for many devices. If you want to contribute yourself, you should use [mitmproxy](https://mitmproxy.org/),...
@matlink check if mitmproxy certificate is correctly listed in your system certs. If it's not, the main reason could be that the structure of the certificate is wrong. The file...
Some values can be taken from those headers. Other values can be taken from android API https://stackoverflow.com/questions/20697008/how-to-get-device-aosp-build-number-in-android-devices-programmatically/20697325
DocV2 -> DocumentDetails -> AppDetails there's `uploadDate` field. https://github.com/NoMore201/googleplay-api/blob/6f5565bdefb8cc9852240e04d9e3ea603bccfc73/googleplay.proto#L450-L473 In the `details()` and `bulkDetails()` functions I parse only a little part of this data. Maybe it is possible to expand...
I get ``` gpapi.googleplay.RequestError: 'Google Play purchases are not supported in your country. Unfortunately you will not be able to complete purchases.' ``` If I try to search for `com.zynga.words`,...
Nope. I found these results searching for the error https://forums.oneplus.net/threads/play-store.173212/ https://stackoverflow.com/questions/27134680/google-play-store-error-df-bpa-30 try to go on google account settings, manually delete device created by gpapi, a try to download the app...