D dimartinoentertainment Member Licensed User Longtime User Jul 2, 2013 #1 Hi Is there a way to get the purchaseToken of a just bought in-app product ? Because I would like to check if the purchase is valid ONLY when I buy a in-app product (Like mentioned in the Google Android docs). This check happens on my server side. Thanks in advance.
Hi Is there a way to get the purchaseToken of a just bought in-app product ? Because I would like to check if the purchase is valid ONLY when I buy a in-app product (Like mentioned in the Google Android docs). This check happens on my server side. Thanks in advance.
Erel B4X founder Staff member Licensed User Longtime User Jul 2, 2013 #2 You can use Reflection to access the mToken field: B4X: Dim r As Reflector r.Target = Product Dim token As String = r.GetField("mToken") I assume that you are asking about InAppBillingv3. Upvote 0
You can use Reflection to access the mToken field: B4X: Dim r As Reflector r.Target = Product Dim token As String = r.GetField("mToken") I assume that you are asking about InAppBillingv3.