-
I'm having this token from flutter (in_app_purchase) PurchasDetails response. I do have those three fields:
It's known that I have to send the serverVerificationData to the backend for verification but this package is not clear enough to verify a purchase based on this data (token) from the client side. Or probably I might have not understood the functions overall. How do I verify this data using this package/library? |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 6 replies
-
First of all, this package is used for server verification. If you want to verify the transaction receipt on Flutter client side, you could try
refer to https://stackoverflow.com/questions/59617454/flutter-how-to-verify-inapppurchases-ios I am not good at the Flutter, Please correct me if something is wrong or missing. |
Beta Was this translation helpful? Give feedback.
Sorry for that I am not familiar with flutter, maybe this answer https://stackoverflow.com/questions/73035526/how-to-get-a-unique-identifier-for-in-app-purchases-in-flutter-which-stays-alway could help you to retrieve transactionId from receipt in flutter.