Home > database >  Is it possible to get the ratings provided by the user to the app through native in app review?
Is it possible to get the ratings provided by the user to the app through native in app review?

Time:11-30

Is there an API to get ratings provided by the user to the app through native in app review? and can we get a hold of the event when the user clicks NOT NOW or CANCLE button?

read through few websites but could not find a clear solution.

CodePudding user response:

We are not able to get the user's rating for Andriod or iOS app. Otherwise, developer could encourage users to rate their app by giving rewards. That may violate the Apple App Review Guidelines: Apps should not require users to rate the app, review the app, watch videos, download other apps, tap on advertisements, enable tracking... including but not limited to gift cards and codes. The same goes for Andriod I thought. In iOS, we use SKStoreReviewController to get feedback on the app. We cannot modify or inherit it.

I also found some answers similar to this question, such as iOS App Store Rating (Tracking The User's Actions). Do2 presented a way of popping up an alert to track user's options before presenting SKStoreReviewController. But it may cause poor user experience, right? Maybe we should pay more attention to improving app ratings with right strategies.

Hope it works for you.

  • Related