We are using server side validation of the payment like so -
- User makes payment.
- Store kit API sends transaction receipt to App.
- App sends base64 encoded transaction receipt to our server.
- Our server calls https://buy.itunes.apple.com/verifyReceipt and validates the transaction recept.
- User is marked as paid.
For a particular user, we didn't get the transaction receipt at the server, due to which the receipt couldn't be verified. We are guessing something went wrong in steps 2 and 3. If there were connection problems at the time of sending receipt to server, the app retries again on subsequent app resume.
Now we have one missing transaction receipt and an angry user. How do you suggest we go forward? How can we prevent this in future? Are there any guidelines or best practices that we can follow to prevent such situation?
Thank you.