Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Cannot connect to iTunes store error

Well, I'm having this issue now. I'm using MKStoreKit in my in-app purchase. This are my errors:

Failed transaction: <SKPaymentTransaction: 0x136a62e0>
error: Error Domain=SKErrorDomain Code=2 "Cannot connect to iTunes Store" UserInfo=0x13654a90 {NSLocalizedDescription=Cannot connect to iTunes Store}

Any idea?

like image 866
Vergmort Avatar asked Jan 15 '13 15:01

Vergmort


3 Answers

You may remove that error via cross checking this check list. If your answer is no for any of the points then it may be causing the problem

  1. Have you enabled In-App Purchases for your App ID?
  2. Have you checked Cleared for Sale for your product?
  3. Does your project’s .plist Bundle ID match your App ID?
  4. Have you generated and installed a new provisioning profile for the new App ID?
  5. Have you configured your project to code sign using this new provisioning profile?
  6. Are you using the full product ID when making an SKProductRequest?
  7. Have you waited several hours since adding your product to iTunes Connect?
  8. Are your bank details active on iTunes Connect?
  9. Is your device jailbroken? If so, you need to revert the jailbreak for IAP to work.
  10. For iOS7 and Xcode 5 Try doing this:
    1. You have to test on a physical device as apple restrict IAP testing in the simulator.
    2. Go to setting -> iTunes & App Store -> and log out of your account. Remove app from device and clean all data.

Most importantly do logout from your current iTunes account in your device before trying to do any purchase.

Make sure you have done all necessary steps for in-App purchase testing.

like image 192
prakhar Avatar answered Sep 22 '22 13:09

prakhar


As of September/October 2013, iOS7 simulators cannot process app store inapp purchase requests.

You need to use a real device

like image 42
user1988824 Avatar answered Sep 22 '22 13:09

user1988824


Imagine, you created new app profile in My Apps of itunes connect. Added in-app. All correct.

Now you want to test purchases. It shows list of products but stops on buy button with "Cannot connect to iTunes Store" error in log.

This is because you try to buy not approved and not existing product! You can test only sandbox product right now.

So, you have to

  1. create sandbox user (in itunes connect - users...)
  2. logout you real itunes login on device
  3. try to buy under sandbox login (it will ask you)
like image 38
djdance Avatar answered Sep 19 '22 13:09

djdance