1
On Coinbase under Merchant Profile I'm entering the URL:
https://www.scirra.com/handlers/coinbasecallback.ashx
For the IPN tester. This ashx page has the code:
var r = "";
foreach(string name in context.Request.Form)
{
r +=(name + " = " + context.Request.Form[name] + "<br><br>");
}
r += "<br><br>" + context.Request.QueryString;
Amazon.Emailer.SendEmail("xxx@domain.com","xxx@domain.com","Callback Dat", r);
The email I receive contains absolutely no data, although the logs page on Coinbase implies it's posting JSON data and returning HTTP 200 (success).
Am I doing something wrong? Or is this a broken feature? Can I (semi) safely assume that it posts the JSON in live mode? And if so, do I simply Request.Form[0] to retrieve it or does it have a string index?
Thanks for any help!
1Thanks for answer, Coinbase did contact me and confirm that the JSON data isn't being posted for test page, and they are working on a fix! – Tom Gullen – 2013-10-22T23:40:37.977