How can I check if a user really rated my app?

I have an Android app where, if custom bets use my app, it gets some tokens. I have three options in my application. Yes, no, remind me later. If the user clicks “Yes”, he is directed to my application, but suppose that he visits the URL and does not evaluate my application, how can I find out about this?

+4
source share
1 answer

You may not know for sure, probably because Google wants developers to buy high ratings from their users using in-app items.

What could you do to ensure that you would not be 100% accurate in any way, the server checks your developer console for the next two minutes using the > developer console API , and if the number of ratings increases, send a response to the application, in which says that he credited the user. But this will only work if your application has a fairly small number of users who rate it, enough so that you don't lean against each other.

+2
source

Source: https://habr.com/ru/post/1534756/


All Articles