How do you to check if a user has rated your app on the Google Play?

42,743

Solution 1

No. You cannot do this. And this is a good thing too -- otherwise you will be able to influence rating by giving people who rated it rewards and such. Additionally, developers would be able to retaliate to negative reviews if such an API were available. This might also violate certain legal agreements between the User and Google if Google starts revealing this data.

However, this is what I personally do in my apps:

  1. Let the user use the app 5 times, to get a good feel of it.
  2. Prompt the user on the sixth run to rate it with options for Yes, Later and Never. Later delays it by two days.

Solution 2

Actually you can do it, you can get the username by using this or similar...

How can I get the google username on Android?

then fire a parser on https://play.google.com/store/apps/details?id=X URL...

<span class="author-name"> <a href="/store/people/details?id=11">Andy Borris</a>  </span>

<div class="tiny-star star-rating-non-editable-container" aria-label=" Rated 1 stars out of five stars "> <div class="current-rating" style="width: 20%;"></div> </div>

and then you can popup "rate me five stars or i will share your pictures with the world" :P lol just kidding

Solution 3

It does take an effort to get users to rate your app, especially if they like it! Unfortunately, negative ratings seem to take much less persuasion ;-)

I've tried a few things, all involving an app button titled "Rate me!" or some such, which when clicked, opens the Market App on the phone. It has been my experience that most users who click the first "Rate me" button will spend an extra 5 secs to give you a stars-rating (and remember most users don't know that your app cannot track whether they actually provided a rating or not). They may not give you a wordy review, and limit it to only a few words ("Great app"), but hey take what you can get!

Solution 4

As other users mentioned before your best bet is to use a "Rate my app" button or dialog. If you use analytics you can track button clicks. If using Google Analytics you could assign event values for buttons displayed on the dialog box and see see how many users click "Rate" button.

Solution 5

It is not possible to know automatically how rated your app. A good practice that I suggest is to select the best momment to rate in order to get a better review.

1 - First, find the best moment for rating. You can do this efficiently by selecting the momment that you solve the users pain. For example, if you were uberlike app, the best momment would be when the users get a ride safely and give a good review for the driver.

2 - Then, code a dialog with Yes, Later and Never options and save to your database to ask later or not.

3 - Ask again on the next best momment.

Share:
42,743

Related videos on Youtube

Vadim Kotov
Author by

Vadim Kotov

Updated on July 05, 2022

Comments

  • Vadim Kotov
    Vadim Kotov almost 2 years

    I want to check to see if a user has rated my app on the Google Play, not how many stars, just if they have. And if they haven't I will prompt them with a dialog asking them to rate it with this code:

    startActivity( new Intent( Intent.ACTION_VIEW,
           Uri.parse("market://details?id=packagename") ) );
    
    • caw
      caw almost 11 years
      As answered by others, this is not possible. But if you want to prompt the user to rate your app, you can use my small library project: github.com/marcow/AppRater
    • Harsha Vardhan
      Harsha Vardhan about 3 years
      You got any solution for this??
  • Julian Higginson
    Julian Higginson about 12 years
    I really don't like apps that desperately try to get you to rate them the 2nd time you've started them up. 5 times is better, but I'd probably be less annoyed by one that waited at least 5 days and at least 10 uses before asking me to rate it. Maybe also one that gave you the question at the end of a session (ie, hitting back button on base activity) rather than when yu've just started it up to do something.
  • Raghav Sood
    Raghav Sood about 12 years
    @JulianHigginson The exact time and place of the prompt depends from app to app. I use 5 runs as the minimum. One of my more extensive apps goes upto 15 days/20 uses.
  • Julian Higginson
    Julian Higginson about 12 years
    Good extra info! I guess I was just interested to talk about this approach from the perspective of a user of apps, that apps can easily be too pushy when asking for feedback. Sounds like you try to strike a good balance with this approach.
  • Andras Balázs Lajtha
    Andras Balázs Lajtha over 10 years
    Good idea to measure the time between the intent and the activity resume. It may be influenced by loading time, but if user don't want to rate, he won't wait for the page to load either. I will add measured time to analytics and see how it goes, but 5 secs might be a good guess.
  • Ashish Sajwan
    Ashish Sajwan about 9 years
    what if user clicked yes on prompt & when user redirected to play store, user closed play store instead of rating the app..
  • zooter
    zooter about 8 years
    so what happens if user already rated the app? Surely it will be silly asking him to rate again
  • AlexioVay
    AlexioVay almost 7 years
    But not all ratings are on one single page load when there are hundreds of ratings. So how could you find that username then?
  • user924
    user924 over 2 years
    you don't need to ask to rate it again after two days, just save to preferences that dialog was shown to a user and don't ask any more!