I am working on adding In-App purchases to my app.

I am able to receive the productsRequest:didReceiveResponse method, and receive the array of products.

My problem arises when I add a SKPayment to the SKPaymentQueue. After I add the product to the queue, in the paymentQueue:updatedTransactions method the transactions always have the state SKPaymentTransactionStateFailed.

I NSLog the "transaction.error" and this is what it returns: Error Domain=SKErrorDomain Code=0 UserInfo=0x165000 "Cannot connect to iTunes Store"

I have logged out of the Store in the Settings app, but after trying to purchase a product in my app it never asks me to log in with my test account. It just fails with the above error.

link|improve this question
exactly my problem, all goes good, until comes "cannot connect to itunes", hopefuly someone has an idea what can be wrong. Can you add more tags to the question? There's an in app purchase tag, also objective-c available... – Ican Zilb Mar 4 '10 at 23:29
feedback

7 Answers

up vote 9 down vote accepted

I assume you've done the standard sanity checks: double-checking your code, confirming your product IDs, comparing your code to the In-App Purchase Programming Guide, etc.

This may be ridiculous, but -- if you're certain your code is correct -- do a hard reset (full wipe) of your iPod (Settings => General => Reset => Erase All Content and Settings). I puzzled over this exact problem for hours -- it turned out my code was correct and the hard reset was the solution.

link|improve this answer
A full restore did the trick. Thanks – lucasharding Mar 15 '10 at 18:50
I had this problem before and I did a full restore which didn't solve the issue. It turned out the Sandbox servers were down. So before following this advice I strongly suggest you check out the development forums for any known issues. – Daniel Wood Sep 15 '10 at 11:30
@Daniel: is there a sandbox status link? Thanks! – Olie Mar 30 '11 at 21:46
@Olie I'm not sure but a check at the Apple Developer forums is usually a good indicator. If they are down there will probably be a thread about it. – Daniel Wood Apr 1 '11 at 9:30
2  
What I concern is that if we have to do a hard reset on our devices. Do others have to do the same way to purchase? Nobody want to do a hard reset just to buy one in-app purchase.. – chanok Jun 2 '11 at 4:55
show 1 more comment
feedback

I had been getting the same error but I had been prompted for my test user account. And also a popup saying "An unknown error has occurred". It turns out that when I created my test user account and signed out of the settings -> store I had decided to sign in with my test user account which had prompted me for a bunch of information including billing, which had broken my test user account. When I created a new test user account and only signed in when prompted to during the in app purchase testing, everything worked smoothly.

link|improve this answer
feedback

Hit with the same problem, i reset my device, cross verified the identifiers, re-installed the app. Also thought the problem was, because I had changed the reference and the description of the products. In reality, I feel it is because my test user had got locked as multiple people where using the same account, and it is a possibility that the password validation failed multiple times. So I re-created another test user and in-app purchasing is back to working. Hope this helps. I was totally stumped with this error.

link|improve this answer
Creating another test user worked for me as well. I think resetting the device works for error code -1003, but a new user account works for error code 0. – Christopher Pickslay Nov 11 '11 at 21:55
This worked for me..Thanks.. – Sijo Nov 16 '11 at 10:24
feedback

Even a full restore did not resolve this problem for me.

After calling addPayment for an auto-renewing product identifier, about one second passed before I received the "SKErrorDomain Code=0" error from StoreKit. At no point was I prompted (as Apple's documentation suggests one should be) for an iTunes Store username and password; the transaction simply failed.

To resolve this, I had to add a fake "consumable" product to iTunes Connect and call addPayment using the fake consumable's product identifier. This caused the iTunes Store dialog to come up. I then logged in with a test account I had created in iTunes Connect. This succeeded: my application was notified that the consumable had been purchased.

After having done this, I was able to call addPayment with my auto-renewing product identifier and purchase the subscription normally.

link|improve this answer
feedback

You can check if the following link is working or timing out:

https://sandbox.itunes.apple.com/verifyReceipt

Alternatively, an unscientific but quite reliable way to check if the sandbox is working is to ask at:

https://devforums.apple.com/community/ios/integration/storekit

If the sandbox is down, there will probably be people already talking about it, like now (18 Jan 2012, 6:40pm UTC time).

link|improve this answer
feedback

Make sure your BundleIDs match. That was my problem.

link|improve this answer
that one saved me! had a mismatched bundle id. Thanks! – Lukas Apr 18 at 9:53
feedback

I had this same issue. I had previously created a test user account, and signed out of the itunes store expecting to be prompted with a sign in for my test user account when I made the in app purchase. instead I got the cannot connect to itunes store message. when I signed in with my real itunes username/password and tried my test app it worked perfectly. I then logged out of itunes store again and my app worked great, prompting me for my id/pw

link|improve this answer
1  
Please do not post "me toos" as answers, that is not constructive. Only provide an answer if you have an actual answer to the problem at hand. – Adam Rosenfield Jul 8 '11 at 5:32
1  
It was not a me too, it was a different process which I thought others would find useful. No one had said try logging in with your real user ID! – FierceMonkey Jul 8 '11 at 11:43
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.