For a basic app with nonconsumable in-app purchases, has anyone figured out best practices for using SKPaymentQueue's restoreCompletedTransactions?

Observations

I know it's recommended to always register a transaction observer to receive pending transactions that make their way back to the app, but this is a different question. It looks like restoreCompletedTransactions is something the app has to actively decide when to call to poll for all the purchases the customer has already made.

From what I can tell, the method is designed to retrieve purchases that may have been lost. For example a customer might install or move an app to a new device in such a way where the user defaults (where Apple recommends recording nonconsumable payments) are lost or reset.

Concerns

What's not clear to me is how to automatically detect this condition (i.e. how to decide when to poll for missing purchases) in a reliable way. I don't want to screw this up and risk denying a customer access to functionality they've already paid for.

At the same time, I don't want to call restoreCompletedTransactions every single time the app launches just to be safe and basically get back transactions I already know about 99.9% of the time. (Except for in-app purchasing, my app doesn't really require any network connectivity.)

Notes

Apple documentation clarifies that customers are not charged again for any nonconsumable purchases they have already made. If they try to re-purchase, a payment transaction is still supposedly sent to the app.

Worst-case, a customer could recover purchases this way but I'd still like to avoid walking them down a path that resembles re-purchasing something they've already paid for.

link|improve this question
3  
I am struggling with the same problem at the moment. The problem I see is with the UI, calling restoreCompletedTransactions immediately prompts the user for their iTunes password with no context which on startup of an app is an incredibly confusing thing to do, especially for people who have not yet purchased the upgrade. I thought about checking it when the store view controller is displayed but again, it will immediately prompt for password, something that will really put first time buyers off. – Dave Verwer Sep 28 '10 at 14:23
1  
Yeah, my sentiments exactly. Automatically prompting users for their account password the first time they run the app or enter the store page was something I really wanted to avoid. I ended up going with a "Restore Purchases" button instead which seems to be working fine. I haven't received any customer complaints or confusion about it so far. – otto Sep 28 '10 at 17:17
feedback

2 Answers

up vote 14 down vote accepted

After writing out the question and thinking about it, I came up with a couple solutions.

Automatic (Not Recommended)

One option is to record in user defaults whether restoreCompletedTransactions has been called (and successfully completed) yet in the app. If not, the app calls it once on start-up. Since this flag is stored in the same place as the nonconsumable payments, if user defaults get wiped later on then the restore method would get called again when the app starts.

This way, if an existing costumer is somehow doing a fresh install of the app they still get their purchases restored automatically. If they are a new customer that has never launched the app before, then the restore operation returns nothing.

In either case, restoreCompletedTransactions is only called once instead of at every launch.

Manual (Recommended)

Another option is to offer the customer a "Restore Purchases" button somewhere, hook it up to restoreCompletedTransactions and let them decide if and when it might be needed.

(The comments below go into why a manual restore is probably better than attempting to do it automatically.)

link|improve this answer
The check for flag on startup and automatically restore is pretty witty. I ended up implmenting a button as did Ramp Champ. But then both applications are downloading large files when purchases are made. – Carl Coryell-Martin Nov 21 '09 at 2:09
7  
Yeah. I'm leaning back towards having a restore button as well. For an automatic restore, I forgot to consider something obvious - that the user can prompted for their account password. That's the last thing I'd want to throw in the user's face the very first time the run the app. – otto Nov 24 '09 at 17:33
1  
The button thing is the best option IMHO. It's what every app I see is doing, too. – pt2ph8 Apr 5 '11 at 9:28
Calling RestoreTransactions will show the iTunes authentication dialog. This means, a new user will be confused as to why the app is asking for his iTunes password. – Mugunth Jul 29 '11 at 6:38
Mugunth Kumar: I think this has recently changed. In earlier versions of iOS the login and password used to downloading the app would persist for 15 minutes. That means, running the app for the first time within 15 minutes of downloading it would allow the restoreCompletedTransactions call to go through without any prompt. After apparent abuse of this feature, Apple changed the behaviour to always require a separate authentication for in-app purchases (which is what you're seeing). With this new approach I see no way of automatically calling restoreCompletedTransactions without prompt. – chris Aug 18 '11 at 5:16
feedback

Don't forget that one Apple ID can span multiple devices. So maintaining a flag on one one device (say, the user's iPhone) that tells you whether or not you've done a restore will not allow you to detect if the customer has made a purchase on another device (say his iPad) that needs to be restored onto the iPhone. So having a manual method of launching a restore is ALSO necessary, even if you have an automatic method.

To make matters worse, I haven't figured out yet how you're notified when REFUNDS of IAPs are made. I suspect the restore process will simply return a list of the non-refunded transactions. So a) you need to DELETE your record of the user's IAP's when you do your restore in case refunded products are simply not reported during restore, and b) you need to periodically do a restore automatically in order to pick up refunds.

This all highlights the problem with Apple's IAP -- it's poorly conceived and inadequately documented -- and now it's REQUIRED for content providers like ebook readers who already have perfectly functioning web-based stores already working in their apps (like Kindle).

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.