requestUserTokenForDeveloperToken返回错误
if (@available(iOS 11.0, *)) {
[self.cloudServiceController requestUserTokenForDeveloperToken:developerToken completionHandler:^(NSString * _Nullable userToken, NSError * _Nullable error) {
NSLog(@"userToken error - %@", error);
}];
}
错误:
Error Domain=SKErrorDomain Code=7 "(null)" UserInfo={NSUnderlyingError=0x1c105e870 {Error Domain=SSErrorDomain Code=109 "(null)" UserInfo={NSUnderlyingError=0x1c105e180 {Error Domain=SSErrorDomain Code=109 "Cannot connect to iTunes Store" UserInfo={NSLocalizedDescription=Cannot connect to iTunes Store, SSErrorHTTPStatusCodeKey=401}}}}}
我该如何解决这个问题? THX!
答案 0 :(得分:1)
我解决了问题,问题出在开发人员令牌中,但是没有正确创建。我使用此实用程序https://github.com/pelauimagineering/apple-music-token-generator重新创建了令牌并且一切正常;)