URL for sending a user to the app review page on device's app store

后端 未结 7 1262
天涯浪人
天涯浪人 2020-12-02 05:06

What\'s the URL to launch in order to bring the iTunes App Store to the front, and open it to show the Reviews page of an app? I want to send my users to the \"Write a Revie

7条回答
  •  抹茶落季
    2020-12-02 05:15

    Am using Appirater for Rating my App

    These links in AppiRater

    // for ios6 or earlier

    NSString *templateReviewURL = @"itms-apps://ax.itunes.apple.com/WebObjects/MZStore.woa/wa/viewContentsUserReviews?type=Purple+Software&id=APP_ID";

    // for ios7

    NSString *templateReviewURLiOS7 = @"itms-apps://itunes.apple.com/app/idAPP_ID";

    These links works fine .

    But takes me to "Details" page of the app .

    But it should go to "Ratings and Reviews" page..

    suggest me any idea

    Thanks

提交回复
热议问题