Reputation: 336
I want to read url of the page when accessing Google play, whats the best way to do this on Android ?
To describe, user searches an app A, clicks on app A page, i want to read that url
Upvotes: 0
Views: 699
Reputation: 1
Google Play Developer API allows developers to access app data, but it doesn’t provide access to the URL of a Play Store page directly. It’s primarily useful for managing apps, in-app purchases, and subscriptions. However, it’s not a solution for extracting Play Store URLs in real-time during user browsing
if needed, use a WebView to track the URL when users visit the Play Store page in a browser.
Upvotes: 0
Reputation: 497
You can copy the URL from within the Google Play Store app by following these steps:
You can then paste the URL on a text field to view it.
Upvotes: 0