Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Does Google Play In-App Billing Version 3 support refunds?

Tags:

I've gotten IAB v3 working and I was able to make a purchase for a managed item. However, to continue developing and testing I wanted to refund the purchase so I could try making the same purchase again. I logged into my Google Checkout Merchant account and successfully refunded the purchase. However, the app still thinks that the user has the item purchased. It has already been several weeks since I made the refund so its not a delay issue.

Basically, in my QueryInventoryFinishedListener implementation, inventory.hasPurchase(SKU_REMOVE_ADS) always returns true, even after the refund (SKU_REMOVE_ADS is the SKU for item I'm selling). I was expecting it to return false after the refund had been processed.

If you look at the 'Handling Refunds' section of the IAB reference, it says that your app needs to be listening to the IN_APP_NOTIFY messages. However the documentation for IN_APP_NOTIFY is specific to v2 of in-app billing. It doesn't seem to be something that's available in v3 since its not mentioned anywhere in the v3 reference nor can I find any reference for it in the sample TrivialDrive app that they are using to demonstrate IAB v3.

So does v3 of IAB support refunds/cancelling purchases? Has any one tried it and got it working?

like image 386
Alinium Avatar asked Apr 02 '13 10:04

Alinium


People also ask

Will Google Play refund in app purchases?

Simply follow the steps below, and you should be able to get a refund no problem — as long as you are still within the 48-hour window for refunds through the Play Store. On any Android device linked to the account you made the purchase from, go to the Play Store page of the item you purchased and hit the Refund button.

Why can't I get a refund on Google Play?

Google Play refund policies state that Google does not offer refunds for most purchases unless they honor the 48-hour rule. If you want to attempt to get a refund after that timeframe, you should contact the app developer directly.

Can you get a refund on Google pay?

Return something that you bought online with Google Pay If you used Google Pay to buy something from a non-Google website or app, contact the retailer's customer support team. Refunds are deposited to your linked bank account, not your Google Pay balance.


1 Answers

There really is no difference between a consumable item and a non-consumable item so far as Google Play is concerned; this distinction is entirely based on what you implement within your app. So even though the SKU you are testing is intended to be non-consumable (e.g., a permanent premium upgrade), for testing purposes, you can treat it as a consumable and consume it, so that it can be purchased again.

A convenient approach is to set up a temporary testing menu within your app (e.g., by adding a menu item during testing onto your app's main options menu), and then to have that item's handler invoke the consumeAsync() method of your IabHelper instance for the SKU that you want to test buying again. This will consume the item and thus make it immediately available for repurchase from your device.

You will, of course, still want to refund the purchase from Google Checkout, so that you won't be spending your own money just to test your app.

I would add that consumeAsync() also seems to work just fine for resetting the test SKU android.test.purchased, if you are testing using such static values.

Regarding the updating of purchase state to reflect a refund, I have personally experienced (and there are many similar reports posted by other developers) that manually initiating a refund via Checkout (e.g., for a test purchase from the TrivialDrive app) takes days to result in a change to the purchase state of the product (to INAPP_PURCHASE_STATE_REFUNDED).

(Knowing that misery loves company, some of those additional reports can be found on this discussion thread: https://plus.google.com/+AndroidDevelopers/posts/R8DKwZDsz5m)

At least part of this is due to Google Play's caching of purchase data on the device.

In my experience, re-booting a device can sometimes cause Google Play to refresh its cache from the GP servers. So it may be that changes due to cancellation or refunding of an order via Checkout could also be detected after a reboot.

It might seem that such a long turnaround period would do you no good, since you can't know when users will reboot. But then again, you know that every device will, eventually, get rebooted, and so if your concern is that a user who receives a refund should eventually be blocked from using the refunded IAB product, a few days of delay may not matter much, so long as it eventually happens.

Of course, remember that this notion that cache will refresh on a reboot is undocumented and anecdotal (like quite a number of IAB3 and TrivialDrive behaviors, thus far). Folklore, they call it.

Another thing that triggers an update is when the user attempts to purchase the product. As soon as the purchase is launched, the system has to be sure that the product is not already owned, and so it updates the Google Play cache. In my personal experience, this has always occurred. But again, this is not a very practical way to check for a refund, because that would involve showing the purchase dialog unbidden, and also an error message that tells the user "you already own this, " (if they do own it).

Where this does come in handy is when the user pays for an IAB item on one of her devices, and then attempts to access that item on a different device that is owned by the same account as was used to buy it. The purchase information in that case has very often not yet been cached. But you can just put a little note in your purchase dialog that if the item has already been purchased, attempting a re-purchase should make it available on the present device at no additional charge. Sometimes it takes two (user-initiated) purchase attempts to finally get the IabHelper.BILLING_RESPONSE_RESULT_ITEM_ALREADY_OWNED response. Yes, a bit klugy, but I think in human terms it will work with appropriate highlighting of the message and apologetic wording of the confirmation dialog telling them that they own the item, etc. :-) ).

As a practical matter, you can see how Google might not want every instance of every IAB app in the world to access its servers every time the app's purchase data is being accessed, especially given that they are advising developers to do a check for what has been purchased each time the app is started. It's also a performance issue for your app - that's what caching is all about. So you need to be aware of the triggers for updating the cache, and I haven't found a single place where this is officially documented (except, we presume, in the code). So get ready to put your hands out in front of you and start feeling around in the dark.

For some additional information regarding Google Play buffering, see this page:

Under What Conditions are In-App Billing Version 3 Server Changes Made Available on Client Devices?

I would note that in your post's code snippet you are calling inventory.hasPurchase(SKU_REMOVE_ADS), but that will only tell you if the purchase is in the list of purchases returned in the inventory object; it will not tell you the state of the purchase for that SKU. I know that this is the approach used by the TrivialDrive app, but that app is not dealing with refunds and cancellations. To detect refunds and canceled orders, you'll need something like this:

Purchase removeAdsPurchase = inventory.getPurchase(SKU_REMOVE_ADS); if(removeAdsPurchase != null) {   int purchaseStateForRemoveAds = removeAdsPurchase.getPurchaseState();   if(purchaseStateForRemoveAds == 1) {     //Do cancelled purchase stuff here   }   else if(purchaseStateForRemoveAds == 2) {     //Do refunded purchase stuff here   } } 

The good news about refunds and canceled orders is that both are, AFAIK, entirely at the option of the developer. So, if you find that users who get these are able to continue using your app for a long interval thereafter, and if you find that lots of users are taking advantage of this, then you can decide if you want to continue providing the refunds in all cases. My best guess is that it will not be a problem; even if some user who gets a refund gets to use your app for a while after that, that doesn't seen like a very big deal.

It is for testing that you need the ability to re-try a purchase very rapidly, and using consumeAsync() definitely works for that purpose.

like image 115
Carl Avatar answered Oct 16 '22 13:10

Carl