您应该使用深度链接在 Apple Music 应用中打开大头钉:
https ://affiliate.itunes.apple.com/resources/documentation/linking-to-the-itunes-music-store/
首先,您需要通过 SKCloudServiceController API 请求授权以检查您的功能(例如,如果您的设备允许播放 Apple Music 曲目)。
[SKCloudServiceController requestAuthorization:^(SKCloudServiceAuthorizationStatus status) {
self.cloudServiceController = [[SKCloudServiceController alloc] init];
[self.cloudServiceController requestCapabilitiesWithCompletionHandler:^(SKCloudServiceCapability capabilities, NSError * _Nullable error) {
[self.cloudServiceController requestStorefrontIdentifierWithCompletionHandler:^(NSString * _Nullable storefrontIdentifier,
NSError * _Nullable error) {
NSString *identifier = [[storefrontIdentifier componentsSeparatedByString:@","] firstObject];
identifier = [[identifier componentsSeparatedByString:@"-"] firstObject];
NSString *countryCode = [self countryCodeWithIdentifier:identifier];
}];
}];
}];
接下来,您将能够请求店面标识符,您将使用它来定义您的国家代码。我建议在您的项目中包含一个 .plist 文件,其中包含所有标识符和相应的国家/地区代码。(您可以在此处找到 .plist 文件https://github.com/bendodson/storefront-assistant/blob/master/StorefrontCountries.plist)。您需要您的国家/地区代码才能收到 Apple Music API 请求。
- (NSString *)countryCodeWithIdentifier:(NSString *)identifier {
NSURL *plistURL = [[NSBundle mainBundle] URLForResource:@"CountryCodes" withExtension:@"plist"];
NSDictionary *countryCodeDictionary = [NSDictionary dictionaryWithContentsOfURL:plistURL];
return countryCodeDictionary[identifier];
}
获得相应的国家/地区代码后,您就可以在 Apple Music 的 API 中搜索曲目。使用以下参数向GET https://itunes.apple.com/search发出请求:
NSDictionary *parameters = @{
@"isStreamable" : @(YES),
@"term" : @"your search parameter"
@"media" : @"music",
@"limit" : @(5),
@"country" : @"your country code"
};
作为此请求的响应,您将收到一组跟踪结果,其中包含许多相关参数。其中之一是“trackViewUrl”。只需将以下参数添加到此 trackViewUrl 即可使其深度链接到 Apple Music 应用程序:
NSString *appleMusicDeepLinking = [NSString stringWithFormat:@"%@&mt=1&app=music", response[0][@"trackViewUrl"]];