Git Product home page Git Product logo

Comments (19)

IzzySoft avatar IzzySoft commented on August 11, 2024 1

I've added a dump method (#30) to make investigating sources easier in cases like this. Unfortunately, I could not find separate versions mentioned anywhere. I assume those are only reviled when device information is passed.

I've only checked with Insta, though, as that was the only one where the package name was mentioned here πŸ˜‰

from googleplaywebserviceapi.

BaseMax avatar BaseMax commented on August 11, 2024 1

from googleplaywebserviceapi.

IzzySoft avatar IzzySoft commented on August 11, 2024

Can we get some applicationIds to test against? I'd then see if and what can be done about it. Don't want to rely on a single app with that πŸ˜‰

Further, as the version fields are literals (no arrays), if we can figure out we'd just return the highest one, regardless of the device, right?

from googleplaywebserviceapi.

BaseMax avatar BaseMax commented on August 11, 2024

He said me he is unable to get the Instagram version using our library. so here is the link:
https://play.google.com/store/apps/details?id=com.instagram.android&hl=en&gl=US

Further, as the version fields are literals (no arrays), if we can figure out we'd just return the highest one, regardless of the device, right?

Yes, it will be great.

from googleplaywebserviceapi.

BaseMax avatar BaseMax commented on August 11, 2024

It seems some popular apps are the same and we are not able to get their version.
But WhatsApp is okay and we are able to get the version.

The next examples are Skype, Netflix, Viber, TikTok which we are not able to get the version.

from googleplaywebserviceapi.

IzzySoft avatar IzzySoft commented on August 11, 2024

I could try those all as well, but as indicated above I'm afraid version info for them won't be available either unless logged-in and device details provided. I found no version details at all for Insta, and neither for Skype. More cross-checking would make sense to see if the structure is identical – but without any details at all, there's no structure to compare. So I fear there's not much we can do about this.

Be welcome to use the new method provided with the PR linked and take a look at the details available for yourself.

from googleplaywebserviceapi.

IzzySoft avatar IzzySoft commented on August 11, 2024

PS: I think I've identified the corresponding section in ds:5. Quoting from Skype (com.skype.raider):

            [
                [
                    null,
                    []
                ],
                [
                    [
                        [
                            29,
                            "10"
                        ]
                    ],
                    [
                        null,
                        []
                    ]
                ]
            ],

Note the first null: this is the place usually holding the versionName. The next block is the targetSdk (29 aka Android 10), then comes the minSdk (again unspecified). For comparison, same section from another app:

            [
                [
                    [
                        "1.14.5"
                    ]
                ],
                [
                    [
                        [
                            30,
                            "11"
                        ]
                    ],
                    [
                        [
                            [
                                28,
                                "9"
                            ]
                        ]
                    ]
                ]
            ],

Here it's a "one-fits-all", so all values are filled.

TL;DR: Unless you want to find a way to fake device information and get "some" data (but then maybe "no data" on other apps not supported by the specified device), I'd say you can close this issue as wontfix – at least I see no way how we can fix it.

from googleplaywebserviceapi.

BaseMax avatar BaseMax commented on August 11, 2024

It's a great update.

from googleplaywebserviceapi.

IzzySoft avatar IzzySoft commented on August 11, 2024

Maybe, but how does it help solving the issue? I wouldn't even know how to provide device details (especially without "logging in" to the lion's lair).

from googleplaywebserviceapi.

BaseMax avatar BaseMax commented on August 11, 2024

I think if it's a problem with the device or auths problem we need to send fake information (account needed?). Maybe send an agent of the latest model/brand phone to see what versions returned.
Or maybe I am wrong?

from googleplaywebserviceapi.

IzzySoft avatar IzzySoft commented on August 11, 2024

Most of the other crawlers require a Google account to start with. Guess this is one of the reasons. You cannot provide device details without specifying the account I'm afraid – and I wouldn't want to implement that (apart from the fact that I can't, as I don't even have an account to test with and neither want to create one).

I'd really love to know if there's a way to do that without account (ideally including fetching the APK). But I very much doubt it is. Been looking far too long for that already; if such a possibility would exist I should have encountered it. But I might be wrong, of course.

from googleplaywebserviceapi.

IzzySoft avatar IzzySoft commented on August 11, 2024

Hm, I stand corrected on this part. Here's what I get for Skype when setting the UA to Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/113.0.0.0 Safari/537.36:

            [
                [
                    [
                        "8.96.0.409"
                    ]
                ],
                [
                    [
                        [
                            31,
                            "12"
                        ]
                    ],
                    [
                        [
                            [
                                26,
                                "8.0"
                            ]
                        ]
                    ]
                ]
            ],

But I wouldn't want to have a UA hard-coded. So what to do? Suggestion:

  • new method setUA($userAgent)
  • if not called, don't set the UA explicitly (or would you prefer a default? If so, which one? And when to update? I'd say better leave that to those using the API).

Shall I go for that?

from googleplaywebserviceapi.

BaseMax avatar BaseMax commented on August 11, 2024

Nice.

I think we can set a default one, but it should be possible to change it as well.

from googleplaywebserviceapi.

IzzySoft avatar IzzySoft commented on August 11, 2024

Well, false alert. I just played with it: Skype now returns a version even without the UA set. Let me try the other candidates from above:

  • com.skype.raider: version returned in both cases
  • com.netflix.mediaclient: in both cases, "Varies with device" (also when using device specific UA)
  • com.viber.voip: "Varies with device"
  • com.zhiliaoapp.musically: "Varies with device"

So there doesn't seem to be a difference. UAs tried:

$ua = "Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/113.0.0.0 Safari/537.36";
$ua = "Dalvik/2.1.0 (Linux; U; Android 10; HD1903 Build/QKQ1.190716.003)"; // OnePlus 7T
$ua = "Dalvik/2.1.0 (Linux; U; Android 7.1.1; SM-G5528 Build/NMF26X)"; // Samsung Galaxy On5
$ua = "Dalvik/2.1.0 (Linux; U; Android 13; Redmi Note 8 Build/TQ2A.230505.002.A1)";

I can still send a PR for the UA-handling, who knows where it might come in handy. Though it does not seem to have any effect now, it might have for other cases. Maybe leave it undocumented/debug-only.

And no, I'd rather refrain from setting a default one. Might falsify results or cause trouble in other places. Remember, some apps are only available for certain devices etc; if the device is not specified there's a chance you still get results – with the wrong one specified, you might not.

from googleplaywebserviceapi.

IzzySoft avatar IzzySoft commented on August 11, 2024

PS: I'd wonder if the UA should change anything. It's not he UA Google looks for, it's an entire device profile. Take e.g. a look at Raccoon, which uses DummyDroid to create such profiles. And that needs – tada! – a Google account (see "System requirements"), as the profile is bound to a GSF ID.

So, do you still want me to make a PR for the UA spoofing, @BaseMax? As pointed out, I don't think it will be much help. But if you want it, I'd just have to commit and push; all set here in a separate branch.

from googleplaywebserviceapi.

BaseMax avatar BaseMax commented on August 11, 2024

Nice.
If you did it, send it. Thanks.

from googleplaywebserviceapi.

IzzySoft avatar IzzySoft commented on August 11, 2024

OK, done & merged. As there were other explicit stream_context_create() definitions, I've replaced them with calls to the new createStreamContext() method while on it, so at least we got some immediate use from it (and less redundant code).

Did not solve this issue here, though – and I don't think we can easily solve it anyway. But who knows what surprises might lurk out there…

from googleplaywebserviceapi.

BaseMax avatar BaseMax commented on August 11, 2024

Heya, Do you think this feature was completely added? We can close this issue or still there is something that need to think and work about.

from googleplaywebserviceapi.

IzzySoft avatar IzzySoft commented on August 11, 2024

Did not solve this issue here, though – and I don't think we can easily solve it anyway.

So TL;DR: I did what I could, and I don't see what more could be done. So this issue could be closed – unless you want it to stay open until someone shows up with a "flash of inspiration".

PS: I don't think it would be a good idea to include "Google LogIn & device identification". I certainly will not add that (don't even have a Google account to test that with, and don't want to create one either).

from googleplaywebserviceapi.

Related Issues (7)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    πŸ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. πŸ“ŠπŸ“ˆπŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❀️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.