user3826306
user3826306

Reputation: 336

Get Google play store application url programmatically

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

Answers (2)

Shailaja tripathi
Shailaja tripathi

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

zwliew
zwliew

Reputation: 497

You can copy the URL from within the Google Play Store app by following these steps:

  1. When viewing the app listing page, press the overflow menu (displayed as 3 dots in a column)
  2. Press on the "Share" menu option
  3. Press on "Copy to clipboard" option

You can then paste the URL on a text field to view it.

Upvotes: 0

Related Questions