in app purchase - I am getting error while requesting products from App Store for IAP -
in ios6, making in-app purchases in app.
i downloaded ios/ , xcode 5 beta , tried open same project.
my code products app store is:
- (void)requestproductswithidentifiers:(nsset*)identifiers { @synchronized(self) { debuglog(@"requesting products identifiers: %@", identifiers); self.productsrequest = [[skproductsrequest alloc] initwithproductidentifiers:identifiers] ; self.productsrequest.delegate = self; [self.productsrequest start]; } }
but returns error:
[iaphelper request:didfailwitherror:](114): request did fail error: <skproductsrequest: 0xb846a10> / error domain=sserrordomain code=2 "cannot connect itunes store" userinfo=0xb846b10 {nslocalizeddescription=cannot connect itunes store}
where can problem?
apple blocked testing in-app purchases...
here link release notes https://developer.apple.com/library/content/releasenotes/developertools/rn-xcode/chapters/introduction.html#//apple_ref/doc/uid/tp40001051-ch1-sw578
see: ios simulator section
storekit (in-app purchases) not work in simulator. 13962338
very sad...
Comments
Post a Comment