IOS - Appstore 評分連結在 IOS11裝置失效, 該怎麼辦?

IOS - Appstore 評分連結在 IOS11裝置失效, 該怎麼辦?

📅 ・ 約 2 分鐘閱讀
IOS

原先 iOS實現跳轉到  AppStore 評分功能的方式如下:

const std::string RatingIOS = "itms-apps://itunes.apple.com/WebObjects/MZStore.woa/wa/viewContentsUserReviews?id=YOURAPPID&onlyLatestVersion=true&pageNumber=0&sortOrdering=1&type=Purple+Software";

但最近在 iOS11以上的裝置, 會出現空白的Appstore頁面, 原因是新的App頁面中已經沒有Review Tab, 而是將Review功能做在敘述以及截圖頁面中,導致舊有的連結失效。

 iOS 11 the app pages do not have a Review Tab anymore, but the reviews are located under the app description and screenshots.

原文連結

新的評分連結

const std::string RatingIOS = "itms-apps://itunes.apple.com/us/app/idYOURAPPID?action=write-review";

只要把新的連結中的YOURAPPID改成自己的APPID就可以使用了。 在IOS 10 & 11中都測試沒有問題, 截圖如下。 [caption id=“attachment_433” align=“alignleft” width=“169”] 呆呆神射手的評分頁面[/caption] [caption id=“attachment_434” align=“alignright” width=“169”] AppStore的評分頁面[/caption]