You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I have a few in-app purchases in my app.
How can I check which of this purchases a user owns?
I think I must get the productid from the JSON object, but how?
I tried:
inappbilling.getPurchases(successHandler, fail);
function successHandler (result) {
strResult = JSON.parse(result);
alert(strResult.productId);
}
This doesn't work.
Please help me.
The text was updated successfully, but these errors were encountered:
I have a few in-app purchases in my app.
How can I check which of this purchases a user owns?
I think I must get the productid from the JSON object, but how?
I tried:
inappbilling.getPurchases(successHandler, fail);
function successHandler (result) {
strResult = JSON.parse(result);
alert(strResult.productId);
}
This doesn't work.
Please help me.
The text was updated successfully, but these errors were encountered: