Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I am using the InAppPurchaseManager plugin for phonegap I'm unsure how to get the restore purchases button code to work. I'm not even sure if this pluggin included all the proper code. Can anyone point me in the right direction?

Here is the call. Just not sure what to do next.

window.plugins.inAppPurchaseManager.onRestored = function(transactionIdentifier, productId, transactionReceipt) { console.log('restored: ' + productId); /* See the developer guide for details of what to do with this */ }

share|improve this question

1 Answer

Got it! All you have to do is add this.

<script type="text/javascript" charset="utf-8">
   $(".ftk50").click(function() {
      window.plugins.inAppPurchaseManager.restoreCompletedTransactions(); 
    });
</script>

<a href="#" class="ftk50">Restore All Purchases</a>
share|improve this answer
The day has come for an answer! I have created a new github for just this and many other questions! github.com/usmart/InAppPurchaseManager-EXAMPLE – Operator Oct 17 '12 at 23:31

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.