我使用App Store常规链接将用户重定向到使用App Store iOS App的其他应用程序。它运作得很好。但是在2-3天之前到现在它有时会工作,有时会显示“无法连接到iTunes Store”的消息。
一般App Store链接是:http://phobos.apple.com/WebObjects/MZStore.woa/wa/viewSoftware?id=APP_ID&mt=8
有没有人遇到过这类问题? 或者是什么原因?这是我的问题还是苹果?
答案 0 :(得分:1)
此格式仅适用于ID,并且可以保留名称更改。在设备上,它将直接打开到应用商店:
http://itunes.apple.com/WebObjects/MZStore.woa/wa/viewSoftware?id=XXXXX&mt=8
将XXXXX替换为您的应用ID。
答案 1 :(得分:0)
最好使用他们的链接制造商来做到这一点....
http://itunes.apple.com/linkmaker
即。 http://itunes.apple.com/gb/app/plane-finder/id336477530?mt=8&uo=4
答案 2 :(得分:0)
当我尝试从iPod Touch和iMac访问您的链接时,它会向我显示错误Your request produced an error. [newNullResponse]
您可能只想与此错误代码联系Apple。请问这个链接的应用程序是什么?也许这个应用程序被苹果公司取消了?
答案 3 :(得分:0)
这适用于我(Xcode 5 - iOS 7及更旧版本 - 设备!):
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