My app is using in-app purchases, and most of my users can purchase just fine without any problems. For these folks, my app downloads the content after the purchase succeeds and they are happy.

However, for a growing number of my users, once they complete a successful in-app purchase they are being asked for their App Store password every time the app starts up after that. I believe this is happening on the call to:

[[SKPaymentQueue defaultQueue] addTransactionObserver:observer];

which I am calling on startup (in accordance with step 6 in Apple's in-app purchase guide: http://developer.apple.com/library/ios/#documentation/NetworkingInternet/Conceptual/StoreKitGuide/AddingaStoretoYourApplication/AddingaStoretoYourApplication.html).

My guess is that, for some reason, Apple's in-app purchase servers aren't registering that the transaction finished successfully - even though I call

[[SKPaymentQueue defaultQueue] finishTransaction:transaction];

when the transaction is completed and my content has been successfully downloaded.

2 questions:

  1. Is anyone else seeing this?

  2. Does anyone have a suggested fix?

Thanks in advance for your help!

BOUNTY EDIT:

Its a transaction which was made with a different Apple-ID. Thats why it cannot be finished unless you type in the right credentials into the dialog. The Question should be either:

  1. How can I prevent such dead transactions (transaction has not been finished, user has no network, meanwhile changes App-ID)?
  2. How can you prune the SkPaymentQueue?
link|improve this question

0% accept rate
I've been experiencing this as well. – Aloha Silver May 3 '11 at 15:13
It must depend on some Transaction that has been interupted with another AppStore-Account: stackoverflow.com/questions/6971740/…. The User has to try all AppStore-Accounts he ever used and if he finds the right one, the Message won't appear again. But that cannot be the solution. It has be ensured, that no transactions with old/former AppStore-Accounts pop up. Maybe that is an Apple "Bug"? – Rene Berlin Oct 19 '11 at 15:15
Where have you added your transaction observer? – Bhargavi May 23 at 8:41
feedback

5 Answers

this seems to be an iOS bug, you might want to check

Transaction comes back after finishTransaction: has been called on it

link|improve this answer
The Question deals with a different problem. Its a transaction which was made with a different Apple-ID. Thats why it cannot be finished unless you type in the right credentials into the dialog. The Question should be either: 1. How can I prevent such dead transactions (transaction has not been finished, user has no network, meanwhile changes App-ID)? Or 2. How can u prune the skpaymentqueue? – Rene Berlin Oct 20 '11 at 0:02
feedback

It seems to be an unsolvable Problem :) I will submit a request at Apple support...

link|improve this answer
feedback

I suspect that this is a correct behaviour. When you set a delegate SKPaymentQueue try to check if there are some transactions to finalize. There may be no not finished transactions but the fact of checking requires to login in iTunes. And I think you can do nothing with it.

It generally has some sense, but it is pretty annoying for users who have set up asking for a password on each transaction (some child protection for instance). So the only way to struggle with it is to set delegate explicitly when you are about to request iTunes. For example you can add some button like "Restore my purchases". Not very beautiful but definitely less annoying.

link|improve this answer
feedback

Deleting and re-installing the app will remove any old transactions associated with another itunes account. If you are still seeing transactions posted to the notification queue, then you likely had some branch in your logic that did not call finishTransaction.

You need to to call finishTransaction on all transactions that are posted to paymentQueue:updatedTransactions:, even ones with SKPaymentTransactionStateFailed.

link|improve this answer
feedback

bugs related to in app purchases fixed in the iOS update 5.1.1 http://support.apple.com/kb/DL1521

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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