用于留下 iTunes 评论的 API

发布于 2024-12-13 13:09:20 字数 82 浏览 0 评论 0原文

有没有这样的API可以在应用程序内留下iTunes评论?或者还有其他我可以使用的东西吗?您想出了什么样的解决方案?

我期待您的想法和经验

Is there such an API for leaving an iTunes review in-app? Or is there something else I could use? What sort of solutions have you come up with?

I look forward to your ideas and experiences

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

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

发布评论

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

评论(2

狼性发作 2024-12-20 13:09:20

我在许多应用程序中使用 Appirater,它会在 X 启动时向用户显示一个对话框,询问他们是否愿意留下评论,然后将他们带到 App Store。我已经在许多应用程序中看到过它(或类似的)。

Appirater 的源码在这里:https://github.com/arashpayan/appirater/

你可以得到在启动之前通过在 iTunes Connect 中查看您的应用程序 ID,它在应用程序信息下列为 Apple ID。这是一个 9 位数字。

I use Appirater in many of my apps, which presents the user with a dialog on the X launch to ask if they'd like to leave a review, and that takes them to the App Store. I've seen it (or similar) used in many apps.

The source for Appirater is here: https://github.com/arashpayan/appirater/

You can get your App ID before launch by looking in iTunes Connect, it's listed as the Apple ID under the app information. It's a 9 digit number.

↙厌世 2024-12-20 13:09:20

据我所知,没有办法在您的应用程序内部执行此操作。就从我的应用程序内部进行审查而言,我通常会遇到这样的情况:

- (IBAction) reviewPressed: (id) source {
   NSString *str = @"itms-apps://ax.itunes.apple.com/WebObjects/MZStore.woa/wa/viewContentsUserReviews?type=Purple+Software&id=YOUR_ID_GOES_HERE"; 
   [[UIApplication sharedApplication] openURL:[NSURL URLWithString:str]];
}

您需要将 URL 中的 ID 替换为您自己的应用程序 ID。

There isn't a way to do this inside of your app that I am aware of. In terms of reviewing from within my apps, I usually just have something like this:

- (IBAction) reviewPressed: (id) source {
   NSString *str = @"itms-apps://ax.itunes.apple.com/WebObjects/MZStore.woa/wa/viewContentsUserReviews?type=Purple+Software&id=YOUR_ID_GOES_HERE"; 
   [[UIApplication sharedApplication] openURL:[NSURL URLWithString:str]];
}

You'll need to replace the ID in the URL with your own App ID.

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