gpt4 book ai didi

ios - 无法从我的 iOS 10 应用程序打开 App Store 中的评级页面

转载 作者:行者123 更新时间:2023-11-28 21:07:19 27 4
gpt4 key购买 nike

我正在尝试直接从我的应用程序打开我注册的应用程序的评级和评论页面。该应用程序尚未上线,但我已将其添加到 iTunes 帐户中并获得了 Apple ID。我试过的代码是

[[UIApplication sharedApplication] openURL:[NSURL URLWithString:@"itms-apps://itunes.apple.com/WebObjects/MZStore.woa/wa/viewContentsUserReviews?id=XXXXXXXXXX&onlyLatestVersion=true&pageNumber=0&sortOrdering=1&type=Purple+Software"]];

其中 XXXXXXXXXX 是我的苹果 ID。上面的代码打开应用程序商店并显示一条错误消息:您的请求产生了一个错误。 [新的空响应]。

最佳答案

在您的应用程序上架之前,您的应用程序的 URL 将不可用。

对于 iOS 10.3 及更高版本,Apple 提供了一种在您的应用中显示 native 应用评级弹出窗口的方法,可将评级直接发送到商店。这是他们推荐的请求评级的方式。

要使其显示出来,您需要在 Swift 中调用它:

if #available(iOS 10.3, *) {
SKStoreReviewController.requestReview()
}

如果您仍然想使用该 URL,以下内容会将您重定向到 iTunes https://itunes.apple.com/en/app/idxxxxxxxxx 中的应用,其中 xxxxxxxxx 是来自 itunes connect 的 App Id

您可能还想检查这个答案:ITunes review URL and iOS 7 (ask user to rate our app) AppStore show a blank page

关于ios - 无法从我的 iOS 10 应用程序打开 App Store 中的评级页面,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/45072464/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com