Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

The Google Play Store app (aka. Android Market) has updated to have many cool features, even wishlist of apps.

I wonder if there is any official API to communicate with it, even intents. I wonder if people just looked at the log to see the intents, or that there is an official API to reach each page of the app.

Here are some examples of what such API might be able to let you do:

  1. what would you do in order to add an app to the wishlist of the Google Play Store?
  2. what would you do in order to go to the reviews of a specific app, or even go to the part where you write a review of it?
  3. Is there a way to query the apps of a specific company there?
  4. what about a query of apps that were installed in the past?

And so on…

share|improve this question
Here are the URIs documented by Google: developer.android.com/distribute/googleplay/promote/… – Jan Gerlinger Aug 18 '12 at 9:03
this is nice , but they are all intents , what about querying info from within your app? is that possible? – android developer Aug 18 '12 at 9:31

2 Answers

up vote 1 down vote accepted
what would you do in order to add an app to the wishlist of the google play?

You can't

what would you do in order to go to the reviews of a specific app , or even go to the part where you write a review of it ?

You can open up the app's page on Google Play using Intent with the URL from the link at the bottom of this answer.

is there a way to query the apps of a specific company there ?

At best, you can use the Search URL to display a list of a particular developers apps.

what about a query of apps that were installed in the past ?

You can't.

Documentation.

share|improve this answer
i see . about the wishlist , is it because it's a new feature , and nobody even know how to access it even as an end user? – android developer Aug 18 '12 at 9:34
It's because the Play Store has no real API as such. They just have a few URL schemes you can use to display data within the Play Store itself. – Raghav Sood Aug 18 '12 at 9:36
do you know how to get to the wishlist ? maybe they have an intent for this too. – android developer Aug 18 '12 at 9:37
If there is such an Intent, then there is no documentation for it, so no. I doubt anybody know that. – Raghav Sood Aug 18 '12 at 9:39
i meant as an end user... – android developer Aug 18 '12 at 9:49
show 7 more comments

There is an API, but it is an unofficial one. Look at this: http://code.google.com/p/android-market-api/

As far as I know you can: search packagenames, developer name and do a regular search with it. It will give you all results as a Strings List.

share|improve this answer
nice. might be useful ,but i think i prefer an official one instead of a workaround which might not work at some point. – android developer Aug 18 '12 at 10:39
I used it before. It's very reliable. – Ahmad Aug 18 '12 at 10:40

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.