Situation:
- User makes an IAP and is awarded some content, we store the users device id to ensure they can access this content whenever they want.
- User decided they do not like the content, so they call Apple and get a refund.
- User can still access the content, even though they have been refunded for their IAP

Problem:
We don't want the user to be able to access this content anymore. This could become a loophole that they would take advantage of. (unlock content, then get refunded and keep their access to said content)

Question:
Is there any way for us to check if a user has been refunded for an IAP with either their transactionId, transactionReceipt, or any other information we may have?

For Reference, I've read the StoreKitGuide, it did not mention this case.

link|improve this question
feedback

3 Answers

up vote 2 down vote accepted

No. There is no way to revoke access to content if they have been refunded. I believe this is by design. It is the same with App Store refunds; if someone buys an app and then asks Apple for a refund, Apple does not stop the user from continuing to use the app.

link|improve this answer
Thanks, unfortunately this is unacceptable as the unlocked content is quite expensive and would surely become a loophole users would take. Looks like I'll have to speak with Apple about my options. – ziggie Jun 28 '11 at 17:03
it's been like that for three years. Few developers have complained; I'll doubt Apple changes policies. They rely on user trust; most people buying your app aren't going to get a refund to skip paying a couple of dollars. – Benjamin Mayo Jul 3 '11 at 13:35
We're talking about between $100-$200, not "a couple of dollars" -- Apple has been helpful, thanks. – ziggie Jul 5 '11 at 17:58
Even if it's $200, I think Apple's train of thought is that your customers should be fully satisfied, and your returns from the majority that will not refund will easily exceed any refunds made. – Benjamin Mayo Jul 6 '11 at 17:26
1  
Im writing a voip app that sells minutes through in app purchases. I dont want to offer a $200 package if someone could call up apple and say they purchased the wrong one, got a refund, and still were able to use all the minutes. I heard you could periodically check the receipt for an expired flag, which indicated if the purchase was refunded. Can anyone confirm this? – AlBeebe Dec 5 '11 at 19:13
show 1 more comment
feedback

According to an answer one of my users received from Apple, refunding an app means they will no longer receive updates to the app, but doesn't remove the app from the device. IAP appears to work the same.

I am wondering if there is not a way by using restoreCompletedTransactions to check for the iAP purchase, but this would pop up a request for the user's iTunes password, so its use is limited.

link|improve this answer
feedback

This should be a question to Apple, try their contact form in itunesonnect.apple.com, you will receive an answer in few weeks :)

link|improve this answer
Already waiting to hear back from someone at Apple... Posting here in case anyone has had to solve this issue. Apple claims they do not give refunds on IAP's, but we all know that they do. – ziggie Jun 22 '11 at 15:16
feedback

Your Answer

 
or
required, but never shown

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