Akdeniz / google-play-crawler

Play with Google Play API :)
Other
563 stars 202 forks source link

GooglePlay download quota #43

Open NullPonyPointer opened 10 years ago

NullPonyPointer commented 10 years ago

This is not an issue or a bug, I just want to know that how much application can we download via this library?

BTW thanks to @Akdeniz for this awesome open source library.

Akdeniz commented 10 years ago

There is no download quota, but of course server may block your ip address and google account as a result of intensive requests. In order to avoid that, you can use multiple accounts and proxies.

NullPonyPointer commented 10 years ago

Thanks, is AppDetails.getVersionCode() works correctly? because it's sometimes return an incorrect version code instead of the real one!

Akdeniz commented 10 years ago

I'm not aware of this kind of behavior. Is there a specific application that I can test myself or is is a random application?

NullPonyPointer commented 10 years ago

@Akdeniz Whenever I'm trying to get version code of an app, this library return zero value which is wrong! here is my code:

public long getVersionCode(DetailsResponse mDetailsResponse) {
    try {
        AppDetails mAppDetails = mDetailsResponse.getDocV2().getDetails().getAppDetails();
        return mAppDetails.getVersionCode();
    } catch (Exception e) {
        return -404;
    }
}
atiqsayyed commented 10 years ago

Can you please mention any specific application that failed to get version code. I cannot see such behavior

102423043 commented 9 years ago

I meet this error behavior. When I download "jp.naver.line.android" apk file..