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
Fovea's purchase plugin has WP8 and receipt validation support: https://github.com/j3k0/cordova-plugin-purchase
(and it also supports iOS and Android).