googleplay-api icon indicating copy to clipboard operation
googleplay-api copied to clipboard

app['versionString'] always return empty string

Open matlink opened this issue 6 years ago • 6 comments

This line

https://github.com/NoMore201/googleplay-api/commit/425a3f833408b0ad5c094a3e021a3c137f67de16#diff-71431ee0efb6f04140ae1488122c391eR31

always return an empty string.

matlink avatar Apr 02 '18 13:04 matlink

For what I can see in latest builds on travis, this field gets correctly fetched. Which device are you using?

NoMore201 avatar Apr 06 '18 19:04 NoMore201

Oh, it looks like bulkDetails doesn't fill this field, but details do ... check line 523 of your travis build

matlink avatar Apr 08 '18 17:04 matlink

looking for this also, i use datails function but didn't get versionString, only versionCode that i get whats the problem? results = self.api.details(search_version) print("APPS = " + results['title']) print("Version = " + results['versionString']) print("Code = " + str(results['versionCode']))

jr3074 avatar Apr 20 '18 09:04 jr3074

fixed, now i can see versionString. btw, i use gplaycli by @matlink but if i use default gpapi i didn't get the versionString, but if i manually compile gpapi, i get the versionString. i see the gpapi version on gplaycli requirement is also the latest version.

jr3074 avatar Apr 20 '18 14:04 jr3074

Looks like some dependency is missing when gpapi is installed using PIP. Apart from this, 'saleEnds' field in offers also return blank when installed using PIP.

rehmatworks avatar Aug 06 '18 16:08 rehmatworks

Did anyone get any further investigating the underlying issue? The field versionString doesn't exist for me in the bulkResponse:

 details {
    appDetails {
        versionCode: 173
        installationSize: 1381889
        ....
    }
}

I took a look at the binary response and it doesn't contain the versionString value although other strings are present (and readable) in binary format. I generated the googleplay_pb2.py file from googleplay.proto myself, but not luck.

Whisprin avatar Nov 13 '18 13:11 Whisprin