Ephenodrom
Ephenodrom

Reputation: 1893

Flutter In App Purchase, check for refund

I have a problem with refunds of my purchases. I query all past purchases when I start the app and check whether a InAppProduct was purchased or not.

final QueryPurchaseDetailsResponse purchaseResponse =
        await _connection.queryPastPurchases();

Now a purchase was refunded, but the purchase is still queried via the queryPastPurchases() method. Also the PurchaseDetails class does not have any information about the purchase being refunded.

Any idea how to handle this case ?

Information :

Upvotes: 6

Views: 1929

Answers (1)

Ephenodrom
Ephenodrom

Reputation: 1893

It took me some time and some hints on github. The problem was that i was refunding the purchase but not revoking it. If you click on the refund button it opens a modal. In the modal there is a checkbox for revoking. Click the checkbox before submitting the refund!

Once the refund was made and you forgot to revoke it, it is not possible to revoke it afterwards.

In this case you have the following options :

  • contact the support

  • revoke it via api ( only possible if the api access was activated before the refund.).

Upvotes: 4

Related Questions