当我尝试从 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?
#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
发布评论
评论(4)
此格式仅适用于 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.
当我尝试从 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?最好使用他们的链接制作器来执行此操作...
http://itunes.apple.com/linkmaker
即
http://itunes.apple.com/gb /app/plane-finder/id336477530?mt=8&uo=4
Best to use their link maker to do this....
http://itunes.apple.com/linkmaker
i.e.
http://itunes.apple.com/gb/app/plane-finder/id336477530?mt=8&uo=4
这对我来说有效(Xcode 5 - iOS 7 & Older - 设备!):
代码片段(您可以复制并粘贴它):
This works on my end (Xcode 5 - iOS 7 & Older - Device!):
Code snippet (you can just copy& paste it):