iTunes 评论网址

发布于 2024-11-09 14:56:24 字数 552 浏览 0 评论 0原文

旧帖子< /a> 讨论了如何将 iPhone 应用程序用户直接发送到应用程序商店评论页面

但是,链接模板:

https://userpub.itunes.apple.com/WebObjects/MZUserPublishing.woa/wa/addUserReview?id=337064413&type=Purple+Software

在 iOS 4.3 中不再有效。有谁知道如何将用户直接链接到 iTunes 中的评论页面?

An old post discussed how to send iPhone app users to an app store review page directly

However, the link template:

https://userpub.itunes.apple.com/WebObjects/MZUserPublishing.woa/wa/addUserReview?id=337064413&type=Purple+Software

is no longer works in iOS 4.3. Does any know how to link user to the review page in iTunes directly?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

鯉魚旗 2024-11-16 14:56:24

试试这个

NSString *str = @"itms-apps://ax.itunes.apple.com/WebObjects/MZStore.woa/wa/viewContentsUserReviews?type=Purple+Software&id=337064413"; //replace the id param's value with your App's id

[[UIApplication sharedApplication] openURL:[NSURL URLWithString:str]];

Try this

NSString *str = @"itms-apps://ax.itunes.apple.com/WebObjects/MZStore.woa/wa/viewContentsUserReviews?type=Purple+Software&id=337064413"; //replace the id param's value with your App's id

[[UIApplication sharedApplication] openURL:[NSURL URLWithString:str]];
菊凝晚露 2024-11-16 14:56:24

也适用于 PhoneGap/Cordova:

  • “itms-apps://ax.itunes.apple.com/WebObjects/MZStore.woa/wa/viewContentsUserReviews?type=Purple+Software&id=337064413”;

  • “http://itunes.apple.com/WebObjects/MZStore.woa/wa/viewContentsUserReviews?pageNumber=0&sortOrdering=1&type=Purple+Software&mt=8&id=337064413”

将 id 参数的值替换为你的应用程序的id

Also works with PhoneGap/Cordova:

  • "itms-apps://ax.itunes.apple.com/WebObjects/MZStore.woa/wa/viewContentsUserReviews?type=Purple+Software&id=337064413";

or

  • "http://itunes.apple.com/WebObjects/MZStore.woa/wa/viewContentsUserReviews?pageNumber=0&sortOrdering=1&type=Purple+Software&mt=8&id=337064413"

replace the id param's value with your App's id

不忘初心 2024-11-16 14:56:24

现在 Cordova/PhoneGap 使用插件 InAppBrowser 作为链接,正确的语法是:

window.open("itms-apps://itunes.apple.com/us/app/scorekeepr-free/id490888743?ls=1&mt=8","_system");

这是在在运行 iOS 5.1 的 iPad 上使用 Cordova-iOS 2.3.0rc2 的真实应用程序

Now that Cordova/PhoneGap uses the plugin InAppBrowser for links, the correct syntax is:

window.open("itms-apps://itunes.apple.com/us/app/scorekeepr-free/id490888743?ls=1&mt=8","_system");

This was tested in a real app with Cordova-iOS 2.3.0rc2 on an iPad running iOS 5.1

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文