简体   繁体   中英

can we publish user app rating from my ionic app to Play Store/App Store without redirecting user to Play Store?

我们可以在不将用户重定向到Play商店的情况下,将用户给定的应用评级从Ionic应用发布到Play商店/ App Store?

No, the rating can only be done in the playstore. Otherwise it would be a lot harder to prevent fake ratings and reviews.

Not possible .

Google only allows transfer within Playstore ie transferring App to the different developer account.

I see your question is tagged as android but then you also ask for App Store in the question. So, in case you'd need this for iOS here's my answer:

Since iOS 10.3 you can make use of the awesome InAppReview from Apple. I can attest to the fact that this new way of reviewing apps has been very fruitful for our apps in terms of the number of reviews. You can read an even more compelling case study here of how Instagram doubled their reviews .

The cordova plugin, which is very easy to use and implement is here: https://github.com/omaxlive/com.omarben.inappreview .

For brevity, and in case that StackOverflow seize to exist (unlikely), here are the steps to use it:

Install the plugin: cordova plugins add com.omarben.inappreview

Call it in the code like this:

var requestReview = function(){
    try{
        var success = function() {
            console.log("Success");
        }
        var failure = function() {
            console.log("Error calling plugin");
        }

        inappreview.requestReview(success, failure);
    }catch(e){
        console.log("catch: "+e);
    }
};

Hope this helps someone...

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM