我正在创建iPhone游戏的免费版本。我想在免费版本中添加一个按钮,将人们带到应用商店中的付费版本。如果我使用标准链接
http://itunes.apple.com/WebObjects/MZStore.woa/wa/viewSoftware?id=300136119&mt=8
iPhone首先打开Safari,然后打开应用程序商店。我使用了其他直接打开应用商店的应用,所以我知道这是可能的。
有任何想法吗?应用商店的URL方案是什么?
我正在创建iPhone游戏的免费版本。我想在免费版本中添加一个按钮,将人们带到应用商店中的付费版本。如果我使用标准链接
http://itunes.apple.com/WebObjects/MZStore.woa/wa/viewSoftware?id=300136119&mt=8
iPhone首先打开Safari,然后打开应用程序商店。我使用了其他直接打开应用商店的应用,所以我知道这是可能的。
有任何想法吗?应用商店的URL方案是什么?
Answers:
于2016-02-02编辑
从iOS 6开始,引入了SKStoreProductViewController类。您可以在不离开应用程序的情况下链接应用程序。代码片断在斯威夫特3.X / 2.X和Objective-C的就是这里。
一个SKStoreProductViewController对象提出了一个商店,允许用户从App Store购买其他媒体。例如,您的应用程序可能会显示商店,以允许用户购买其他应用程序。
使用iTunes链接直接将客户吸引到App Store上的应用程序使用iTunes链接,您可以为客户提供一种直接从网站或市场营销活动直接访问App Store上的应用程序的简便方法。创建iTunes链接很简单,可以将客户定向到单个应用程序,所有应用程序或指定公司名称的特定应用程序。
要将客户发送到特定的应用程序:http : //itunes.com/apps/appname
要将客户发送到您在App Store上拥有的应用程序列表,请执行以下操作:http : //itunes.com/apps/developername
要将客户发送到URL中包含您的公司名称的特定应用程序:http : //itunes.com/apps/developername/appname
补充笔记:
您可以替换http://
为itms://
或itms-apps://
避免重定向。
请注意,这itms://
将用户发送到iTunes商店,并itms-apps://
与它们发送到应用程序商店!
有关命名的信息,请参阅Apple QA1633:
https://developer.apple.com/library/content/qa/qa1633/_index.html。
编辑(截至2015年1月):
itunes.com/apps链接应更新为appstore.com/apps。请参阅上面的QA1633,该文件已更新。新的QA1629建议了以下步骤和代码,用于从应用程序启动商店:
NSURL
使用复制的iTunes URL 创建一个对象,然后将该对象传递给UIApplication
的openURL
:方法在App Store中打开您的项目。样例代码:
NSString *iTunesLink = @"itms://itunes.apple.com/app/apple-store/id375380948?mt=8";
[[UIApplication sharedApplication] openURL:[NSURL URLWithString:iTunesLink]];
斯威夫特4.2
let urlStr = "itms-apps://itunes.apple.com/app/apple-store/id375380948?mt=8"
if #available(iOS 10.0, *) {
UIApplication.shared.open(URL(string: urlStr)!, options: [:], completionHandler: nil)
} else {
UIApplication.shared.openURL(URL(string: urlStr)!)
}
appname
什么?是应用程序的“捆绑包显示名称”吗?是否不区分大小写?如何处理空格等?
如果要直接在App Store中打开应用程序,则应使用:
itms-apps:// ...
这样,它将直接在设备中打开App Store应用程序,而不是先转到iTunes,然后仅打开App Store(仅使用itms://时)。
希望能有所帮助。
编辑:2017年4月。itms-apps://实际上在iOS10中可以再次使用。我测试了
编辑:2013年4月。这不再适用于iOS5及更高版本。只需使用
https://itunes.apple.com/app/id378458261
并且没有更多的重定向。
itms
打开iTunes。同时itms-apps
打开App Store。如果提示用户进行更新,这是一个关键的区别!(iOS 10)
itms-apps
openURL:
在iOS 10.2中为我打开App Store应用。似乎没有问题。
从iOS 6开始,使用SKStoreProductViewController类以正确的方式进行操作。
Swift 5.x:
func openStoreProductWithiTunesItemIdentifier(_ identifier: String) {
let storeViewController = SKStoreProductViewController()
storeViewController.delegate = self
let parameters = [ SKStoreProductParameterITunesItemIdentifier : identifier]
storeViewController.loadProduct(withParameters: parameters) { [weak self] (loaded, error) -> Void in
if loaded {
// Parent class of self is UIViewContorller
self?.present(storeViewController, animated: true, completion: nil)
}
}
}
private func productViewControllerDidFinish(viewController: SKStoreProductViewController) {
viewController.dismiss(animated: true, completion: nil)
}
// Usage:
openStoreProductWithiTunesItemIdentifier("1234567")
Swift 3.x:
func openStoreProductWithiTunesItemIdentifier(identifier: String) {
let storeViewController = SKStoreProductViewController()
storeViewController.delegate = self
let parameters = [ SKStoreProductParameterITunesItemIdentifier : identifier]
storeViewController.loadProduct(withParameters: parameters) { [weak self] (loaded, error) -> Void in
if loaded {
// Parent class of self is UIViewContorller
self?.present(storeViewController, animated: true, completion: nil)
}
}
}
func productViewControllerDidFinish(_ viewController: SKStoreProductViewController) {
viewController.dismiss(animated: true, completion: nil)
}
// Usage:
openStoreProductWithiTunesItemIdentifier(identifier: "13432")
您可以像下面这样获取应用程序的iTunes项目标识符:(而不是静态的)
迅捷3.2
var appID: String = infoDictionary["CFBundleIdentifier"]
var url = URL(string: "http://itunes.apple.com/lookup?bundleId=\(appID)")
var data = Data(contentsOf: url!)
var lookup = try? JSONSerialization.jsonObject(with: data!, options: []) as? [AnyHashable: Any]
var appITunesItemIdentifier = lookup["results"][0]["trackId"] as? String
openStoreProductViewController(withITunesItemIdentifier: Int(appITunesItemIdentifier!) ?? 0)
Swift 2.x:
func openStoreProductWithiTunesItemIdentifier(identifier: String) {
let storeViewController = SKStoreProductViewController()
storeViewController.delegate = self
let parameters = [ SKStoreProductParameterITunesItemIdentifier : identifier]
storeViewController.loadProductWithParameters(parameters) { [weak self] (loaded, error) -> Void in
if loaded {
// Parent class of self is UIViewContorller
self?.presentViewController(storeViewController, animated: true, completion: nil)
}
}
}
func productViewControllerDidFinish(viewController: SKStoreProductViewController) {
viewController.dismissViewControllerAnimated(true, completion: nil)
}
// Usage
openStoreProductWithiTunesItemIdentifier("2321354")
目标-C:
static NSInteger const kAppITunesItemIdentifier = 324684580;
[self openStoreProductViewControllerWithITunesItemIdentifier:kAppITunesItemIdentifier];
- (void)openStoreProductViewControllerWithITunesItemIdentifier:(NSInteger)iTunesItemIdentifier {
SKStoreProductViewController *storeViewController = [[SKStoreProductViewController alloc] init];
storeViewController.delegate = self;
NSNumber *identifier = [NSNumber numberWithInteger:iTunesItemIdentifier];
NSDictionary *parameters = @{ SKStoreProductParameterITunesItemIdentifier:identifier };
UIViewController *viewController = self.window.rootViewController;
[storeViewController loadProductWithParameters:parameters
completionBlock:^(BOOL result, NSError *error) {
if (result)
[viewController presentViewController:storeViewController
animated:YES
completion:nil];
else NSLog(@"SKStoreProductViewController: %@", error);
}];
[storeViewController release];
}
#pragma mark - SKStoreProductViewControllerDelegate
- (void)productViewControllerDidFinish:(SKStoreProductViewController *)viewController {
[viewController dismissViewControllerAnimated:YES completion:nil];
}
您可以
kAppITunesItemIdentifier
像这样获得(应用程序的iTunes项目标识符):(而不是静态的)
NSDictionary* infoDictionary = [[NSBundle mainBundle] infoDictionary];
NSString* appID = infoDictionary[@"CFBundleIdentifier"];
NSURL* url = [NSURL URLWithString:[NSString stringWithFormat:@"http://itunes.apple.com/lookup?bundleId=%@", appID]];
NSData* data = [NSData dataWithContentsOfURL:url];
NSDictionary* lookup = [NSJSONSerialization JSONObjectWithData:data options:0 error:nil];
NSString * appITunesItemIdentifier = lookup[@"results"][0][@"trackId"];
[self openStoreProductViewControllerWithITunesItemIdentifier:[appITunesItemIdentifier intValue]];
-(IBAction)clickedUpdate
{
NSString *simple = @"itms-apps://itunes.apple.com/app/id1234567890";
[[UIApplication sharedApplication] openURL:[NSURL URLWithString:simple]];
}
将“ id1234567890”替换为“ id”和“您的十位数”
这在所有设备上均可完美运行。
它确实直接进入应用商店,没有重定向。
对所有的国家商店都可以。
的确,您应该转为使用 loadProductWithParameters
,但是如果链接的目的是更新您实际所在的应用程序:最好使用这种“老式”方法。
苹果刚刚宣布了appstore.com网址。
https://developer.apple.com/library/ios/qa/qa1633/_index.html
App Store短链接共有三种类型,有两种形式,一种用于iOS应用程序,另一种用于Mac应用程序:
公司名
iOS:http://appstore.com/,例如http://appstore.com/apple
苹果:http://appstore.com/mac/例如,http://appstore.com/mac/apple
应用名称
的iOS:http://appstore.com/例如,http://appstore.com/keynote
苹果:http://appstore.com/mac/例如,http://appstore.com/mac/keynote
公司应用
iOS:http : //appstore.com/ /,例如http://appstore.com/apple/keynote
苹果:http://appstore.com/mac/ /例如,http://appstore.com/mac/apple/keynote
大多数公司和应用都有规范的App Store短链接。通过更改或删除某些字符(其中许多字符是非法的或URL中具有特殊含义(例如,“&”))来创建此规范URL。
要创建App Store短链接,请将以下规则应用于您的公司或应用名称:
删除所有空格
将所有字符转换为小写
删除所有版权(©),商标(™)和注册商标(®)符号
用“和”替换与符号(“&”)
删除大多数标点符号(请参见清单2)
将重音符号和其他“装饰”字符(ü,å等)替换为其基本字符(u,a等)
保留所有其他字符不变。
清单2必须删除的标点符号
!¡“#$%'()* +,-。/ :; <=>¿?@ [] ^ _`{|}〜
下面是一些示例来演示发生的转换。
应用商店
公司名称示例
Gameloft => http://appstore.com/gameloft
Activision Publishing,Inc. => http://appstore.com/activisionpublishinginc
陈的摄影与软件=> http://appstore.com/chensphotographyandsoftware
应用名称示例
陶笛=> http://appstore.com/ocarina
我的佩里在哪里?=> http://appstore.com/wheresmyperry
Brain Challenge™=> http://appstore.com/brainchallenge
此代码在iOS上生成App Store链接
NSString *appName = [NSString stringWithString:[[[NSBundle mainBundle] infoDictionary] objectForKey:@"CFBundleName"]];
NSURL *appStoreURL = [NSURL URLWithString:[NSString stringWithFormat:@"itms-apps://itunes.com/app/%@",[appName stringByReplacingOccurrencesOfString:@" " withString:@""]]];
在Mac上用http替换itms-apps:
NSURL *appStoreURL = [NSURL URLWithString:[NSString stringWithFormat:@"http:/itunes.com/app/%@",[appName stringByReplacingOccurrencesOfString:@" " withString:@""]]];
在iOS上打开网址:
[[UIApplication sharedApplication] openURL:appStoreURL];
苹果电脑:
[[NSWorkspace sharedWorkspace] openURL:appStoreURL];
拥有直接链接而无需重定向:
http://
用itms-apps://
[[UIApplication sharedApplication] openURL:url];
请注意,这些链接仅适用于实际设备,不适用于模拟器。
来源:https : //developer.apple.com/library/ios/#qa/qa2008/qa1629.html
只需在应用程序链接中将“ itunes”更改为“ phobos”。
http://phobos.apple.com/WebObjects/MZStore.woa/wa/viewSoftware?id=300136119&mt=8
现在它将直接打开App Store
仅使用APP ID,这对我来说非常有效:
NSString *urlString = [NSString stringWithFormat:@"http://itunes.apple.com/app/id%@",YOUR_APP_ID];
[[UIApplication sharedApplication] openURL:[NSURL URLWithString:urlString]];
重定向数为零。
许多答案都建议使用“ itms”或“ itms-apps”,但是Apple并没有特别推荐这种做法。他们仅提供以下方式来打开App Store:
清单1 从iOS应用程序启动App Store
NSString *iTunesLink = @"https://itunes.apple.com/us/app/apple-store/id375380948?mt=8";
[[UIApplication sharedApplication] openURL:[NSURL URLWithString:iTunesLink]];
截至此答案,请参阅https://developer.apple.com/library/ios/qa/qa1629/_index.html最近更新于2014年3月。
对于支持iOS 6及更高版本的应用,Apple提供了一种用于展示App Store的应用内机制: SKStoreProductViewController
- (void)loadProductWithParameters:(NSDictionary *)parameters completionBlock:(void (^)(BOOL result, NSError *error))block;
// Example:
SKStoreProductViewController* spvc = [[SKStoreProductViewController alloc] init];
spvc.delegate = self;
[spvc loadProductWithParameters:@{ SKStoreProductParameterITunesItemIdentifier : @(364709193) } completionBlock:^(BOOL result, NSError *error){
if (error)
// Show sorry
else
// Present spvc
}];
请注意,在iOS6上,如果有错误,则可能不会调用完成块。这似乎是iOS 7中已解决的错误。
如果要链接到开发人员的应用程序,并且开发人员的名称带有标点符号或空格(例如,Development Company,LLC),则形成您的URL,如下所示:
itms-apps://itunes.com/apps/DevelopmentCompanyLLC
否则,它在iOS 4.3.3上返回“无法处理此请求”
您可以通过以下链接制造商获得指向应用商店或iTunes中特定项目的链接:http : //itunes.apple.com/linkmaker/
对于Xcode 9.1和Swift 4:
import StoreKit
2.符合协议
SKStoreProductViewControllerDelegate
3,实施协议
func openStoreProductWithiTunesItemIdentifier(identifier: String) {
let storeViewController = SKStoreProductViewController()
storeViewController.delegate = self
let parameters = [ SKStoreProductParameterITunesItemIdentifier : identifier]
storeViewController.loadProduct(withParameters: parameters) { [weak self] (loaded, error) -> Void in
if loaded {
// Parent class of self is UIViewContorller
self?.present(storeViewController, animated: true, completion: nil)
}
}
}
3.1
func productViewControllerDidFinish(_ viewController: SKStoreProductViewController) {
viewController.dismiss(animated: true, completion: nil)
}
openStoreProductWithiTunesItemIdentifier(identifier: "here_put_your_App_id")
注意:
输入APP的确切ID非常重要。因为这会导致错误(不显示错误日志,但因此无法正常工作)
我可以确认,如果您在iTunes connect中创建一个应用程序,则在提交应用程序之前先获取您的应用程序ID。
因此..
itms-apps://itunes.apple.com/app/id123456789
NSURL *appStoreURL = [NSURL URLWithString:@"itms-apps://itunes.apple.com/app/id123456789"];
if ([[UIApplication sharedApplication]canOpenURL:appStoreURL])
[[UIApplication sharedApplication]openURL:appStoreURL];
工作请客
当支持多个操作系统和多个平台时,创建链接可能会成为一个复杂的问题。例如,iOS 7不支持WebObjects(其中一些),您创建的某些链接会打开另一个国家/地区的商店,然后打开用户的国家/地区。
有一个名为iLink的开源库可以为您提供帮助。
该库的优点是可以在运行时找到并创建链接(该库将检查应用程序ID和正在运行的OS,并确定应创建哪个链接)。最好的一点是,在使用它之前,您几乎不需要配置任何东西,这样就不会出错,并且可以一直工作。如果您在同一项目中只有很少的目标,那也很棒,您不必记住要使用哪个应用程序ID或链接。如果用户同意,该库还将提示用户如果商店中有新版本(已内置,您可以通过简单的标记将其关闭)升级应用程序,则直接指向应用程序的升级页面。
将2个库文件复制到您的项目(iLink.h和iLink.m)。
在您的appDelegate.m上:
#import "iLink.h"
+ (void)initialize
{
//configure iLink
[iLink sharedInstance].globalPromptForUpdate = YES; // If you want iLink to prompt user to update when the app is old.
}
在您要打开评分页面的地方,例如,只需使用:
[[iLink sharedInstance] iLinkOpenAppPageInAppStoreWithAppleID: YOUR_PAID_APP_APPLE_ID]; // You should find YOUR_PAID_APP_APPLE_ID from iTunes Connect
不要忘记在同一文件上导入iLink.h。
那里的整个库都有很好的文档,还有iPhone和Mac的示例项目。
根据苹果公司的最新文件, 您需要使用
appStoreLink = "https://itunes.apple.com/us/app/apple-store/id375380948?mt=8"
要么
SKStoreProductViewController
itms:
或itms-apps:
。使用该方案的链接在运行iOS 12的设备上可以正常工作
如果您拥有应用商店ID,则最好使用它。特别是如果将来您可能会更改应用程序的名称。
http://itunes.apple.com/app/id378458261
如果您没有应用商店ID,则可以根据此文档https://developer.apple.com/library/ios/qa/qa1633/_index.html创建网址
+ (NSURL *)appStoreURL
{
static NSURL *appStoreURL;
static dispatch_once_t onceToken;
dispatch_once(&onceToken, ^{
appStoreURL = [self appStoreURLFromBundleName:[[NSBundle mainBundle] objectForInfoDictionaryKey:@"CFBundleName"]];
});
return appStoreURL;
}
+ (NSURL *)appStoreURLFromBundleName:(NSString *)bundleName
{
NSURL *appStoreURL = [NSURL URLWithString:[NSString stringWithFormat:@"itms-apps://itunes.com/app/%@", [self sanitizeAppStoreResourceSpecifier:bundleName]]];
return appStoreURL;
}
+ (NSString *)sanitizeAppStoreResourceSpecifier:(NSString *)resourceSpecifier
{
/*
https://developer.apple.com/library/ios/qa/qa1633/_index.html
To create an App Store Short Link, apply the following rules to your company or app name:
Remove all whitespace
Convert all characters to lower-case
Remove all copyright (©), trademark (™) and registered mark (®) symbols
Replace ampersands ("&") with "and"
Remove most punctuation (See Listing 2 for the set)
Replace accented and other "decorated" characters (ü, å, etc.) with their elemental character (u, a, etc.)
Leave all other characters as-is.
*/
resourceSpecifier = [resourceSpecifier stringByReplacingOccurrencesOfString:@"&" withString:@"and"];
resourceSpecifier = [[NSString alloc] initWithData:[resourceSpecifier dataUsingEncoding:NSASCIIStringEncoding allowLossyConversion:YES] encoding:NSASCIIStringEncoding];
resourceSpecifier = [resourceSpecifier stringByReplacingOccurrencesOfString:@"[!¡\"#$%'()*+,-./:;<=>¿?@\\[\\]\\^_`{|}~\\s\\t\\n]" withString:@"" options:NSRegularExpressionSearch range:NSMakeRange(0, resourceSpecifier.length)];
resourceSpecifier = [resourceSpecifier lowercaseString];
return resourceSpecifier;
}
通过测试
- (void)testAppStoreURLFromBundleName
{
STAssertEqualObjects([AGApplicationHelper appStoreURLFromBundleName:@"Nuclear™"].absoluteString, @"itms-apps://itunes.com/app/nuclear", nil);
STAssertEqualObjects([AGApplicationHelper appStoreURLFromBundleName:@"Magazine+"].absoluteString, @"itms-apps://itunes.com/app/magazine", nil);
STAssertEqualObjects([AGApplicationHelper appStoreURLFromBundleName:@"Karl & CO"].absoluteString, @"itms-apps://itunes.com/app/karlandco", nil);
STAssertEqualObjects([AGApplicationHelper appStoreURLFromBundleName:@"[Fluppy fuck]"].absoluteString, @"itms-apps://itunes.com/app/fluppyfuck", nil);
STAssertEqualObjects([AGApplicationHelper appStoreURLFromBundleName:@"Pollos Hérmanos"].absoluteString, @"itms-apps://itunes.com/app/polloshermanos", nil);
STAssertEqualObjects([AGApplicationHelper appStoreURLFromBundleName:@"Niños and niñas"].absoluteString, @"itms-apps://itunes.com/app/ninosandninas", nil);
STAssertEqualObjects([AGApplicationHelper appStoreURLFromBundleName:@"Trond, MobizMag"].absoluteString, @"itms-apps://itunes.com/app/trondmobizmag", nil);
STAssertEqualObjects([AGApplicationHelper appStoreURLFromBundleName:@"!__SPECIAL-PLIZES__!"].absoluteString, @"itms-apps://itunes.com/app/specialplizes", nil);
}
所有的答案都已经过时,无法正常工作;使用以下方法。
开发人员的所有应用:
itms-apps://apps.apple.com/developer/developer-name/developerId
单个应用:
itms-apps://itunes.apple.com/app/appId
它将直接打开App Store
NSString *iTunesLink = @"itms-apps://itunes.apple.com/app/ebl-
skybanking/id1171655193?mt=8";
[[UIApplication sharedApplication] openURL:[NSURL URLWithString:iTunesLink]];
试试这个
http://itunes.apple.com/lookup?id= “您的应用程序ID”返回json。从此,找到键“ trackViewUrl ”,值是所需的URL。使用这个网址(只需更换https://
用itms-apps://
)。这工作得很好。
例如,如果您的应用程序ID为xyz,则请转到此链接 http://itunes.apple.com/lookup?id=xyz
然后找到键“ trackViewUrl ”的URL。这是您的应用在应用商店中的URL,要在xcode中使用此URL,请尝试以下操作
NSString *iTunesLink = @"itms-apps://itunes.apple.com/us/app/Your app name/id Your app ID?mt=8&uo=4";
[[UIApplication sharedApplication] openURL:[NSURL URLWithString:iTunesLink]];
谢谢