App Store 常规链接在 iOS 设备上不起作用

发布于 2024-11-02 16:00:45 字数 1432 浏览 1 评论 0原文

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

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

发布评论

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

评论(4

手心的海 2024-11-09 16:00:45

此格式仅适用于 ID,并且在名称更改后仍然有效。在设备上,它将直接打开到应用程序商店:

http://itunes.apple.com/WebObjects/MZStore.woa/wa/viewSoftware?id=XXXXX&mt=8

将 XXXXX 替换为您的应用 ID。

This format works with just the ID, and survives name changes. On the device, it will open directly into the app store:

http://itunes.apple.com/WebObjects/MZStore.woa/wa/viewSoftware?id=XXXXX&mt=8

Replace XXXXX with your app id.

小苏打饼 2024-11-09 16:00:45

当我尝试从 iPod Touch 和 iMac 访问您的链接时,出现错误:您的请求产生了错误。 [newNullResponse] 您可能只想联系 Apple 并提供此错误代码。请问这个链接是什么应用程序?也许这个应用程序被苹果下架了?

When I try to access your link from my iPod Touch and iMac, it gives me the error, Your request produced an error. [newNullResponse] You might just want to contact Apple with this error code. May I ask what app this links too? Maybe this app was taken down by Apple?

迷乱花海 2024-11-09 16:00:45

这对我来说有效(Xcode 5 - iOS 7 & Older - 设备!):

itms-apps://itunes.apple.com/app/idYOUR_APP_ID

代码片段(您可以复制并粘贴它):

#define YOUR_APP_STORE_ID 123456789 // Change this one to your app ID

static NSString *const iOS7AppStoreURLFormat = @"itms-apps://itunes.apple.com/app/id%@";

[NSURL URLWithString:[NSString stringWithFormat: iOS7AppStoreURLFormat, YOUR_APP_STORE_ID]]; // Would contain the right link

This works on my end (Xcode 5 - iOS 7 & Older - Device!):

itms-apps://itunes.apple.com/app/idYOUR_APP_ID

Code snippet (you can just copy& paste it):

#define YOUR_APP_STORE_ID 123456789 // Change this one to your app ID

static NSString *const iOS7AppStoreURLFormat = @"itms-apps://itunes.apple.com/app/id%@";

[NSURL URLWithString:[NSString stringWithFormat: iOS7AppStoreURLFormat, YOUR_APP_STORE_ID]]; // Would contain the right link
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文