How can I pass back the purchase receipt to the JavaScript using Cordova WP8?

160 Views Asked by At

I am using this cordova plugin

How can I pass back the purchase receipt to the JavaScript.

I tried with this:

string receiptXml =  await CurrentApp.GetProductReceiptAsync(productListing.ProductId);
string res = String.Format("\"receipt\":\"{0}\"",receiptXml);
res = "{" + res + "}";
this.DispatchCommandResult(new PluginResult(PluginResult.Status.OK, res));

But the receipt is not returned to the JavaScript

1

There are 1 best solutions below

0
On

Fovea's purchase plugin has WP8 and receipt validation support: https://github.com/j3k0/cordova-plugin-purchase

(and it also supports iOS and Android).