用于将用户发送至设备应用商店上的应用审核页面的 URL
为了将 iTunes App Store 置于最前面并打开它以显示应用程序的评论页面,要启动的 URL 是什么? 我想将我的用户发送到“撰写评论”页面。
其他一些SO答案提供了如下所示的URL,但它似乎不起作用:
itms-apps://itunes.apple.com/WebObjects/MZStore.woa/wa/viewContentsUserReviews?id=12345678&pageNumber=0& sortOrdering=1
对于适用于 iPhone 和 iPad 的 URL 有什么建议吗?
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 Review" page.
Some other SO answers provided URLs like the one below, but it doesn't seem to work:
itms-apps://itunes.apple.com/WebObjects/MZStore.woa/wa/viewContentsUserReviews?id=12345678&pageNumber=0&sortOrdering=1
Any suggestions for a URL that'll work on iPhone and iPad?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(7)
更新:iOS 4.2 似乎已经解决了这个问题,现在链接可以直接打开 App Store 应用程序,而不是评论页面。
本文 剖析 iTunes 链接 就说明了一切。
Update: iOS 4.2 seems to have fixed this and links now open the App Store app directly rather than the review page.
This article Dissecting iTunes links explains everything.
我尝试了一堆不同的链接,这只是一个在 iPhone 和 iPad 上始终适用于我的链接:
http://itunes.apple.com/WebObjects/MZStore.woa/wa/viewContentsUserReviews?pageNumber=0&sortOrdering= 1&type=紫色+软件&mt=8&id=YOUR_APP
I tried a bunch of different links, this is only one working for me on iPhone AND iPad consistently:
http://itunes.apple.com/WebObjects/MZStore.woa/wa/viewContentsUserReviews?pageNumber=0&sortOrdering=1&type=Purple+Software&mt=8&id=YOUR_APP
查看 Appirater - http://arashpayan.com/blog/ index.php/2009/09/07/presenting-appirater/
Check out Appirater - http://arashpayan.com/blog/index.php/2009/09/07/presenting-appirater/
这对我有用:
itms-apps://ax.itunes.apple.com/WebObjects/MZStore.woa/wa/viewContentsUserReviews?type=Purple+Software&id=584691809
this works for me:
itms-apps://ax.itunes.apple.com/WebObjects/MZStore.woa/wa/viewContentsUserReviews?type=Purple+Software&id=584691809
我正在使用 Appirater 对我的应用程序进行评级
AppiRater 中的这些链接
// 适用于 ios6 或更早版本
NSString *templateReviewURL = @"itms-apps://ax.itunes.apple.com/WebObjects/MZStore.woa/wa/viewContentsUserReviews?type=Purple +软件&id=APP_ID";
// 对于 ios7
NSString *templateReviewURLiOS7 = @"itms-apps://itunes.apple.com/app/idAPP_ID";
这些链接工作正常。
但带我到应用程序的“详细信息”页面。
但它应该去“评级和评论”页面..
建议我任何想法
谢谢
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
iTunes 有一个链接创建器,您可以使用它来获取 URL。在我的应用程序上进行了测试。有用。
iTunes has a link maker you can use to get the URL. Tested on my app. It works.
用于在 iOS 10.3+ 之后向用户请求评分和审核
SKStoreReviewController 允许用户通过对话框直接在应用程序内对应用程序进行评分。唯一的缺点是您只能请求 StoreKit 显示该对话框,但无法确定是否会显示。
For Requesting for rate and review to user after iOS 10.3+
The SKStoreReviewController allows users to rate an app directly from within the app through a dialog box. The only downsite is that you can only request StoreKit to display the dialog, but can't be sure if it will.