Hi guys
I had an app that's been working since last year without issue.
Now, since yesterday (Monday 27th), I am hitting problems. Specifically, using the solution provided online (c#) the issue is that
using (WebResponse response = GetWebResponse(request))
using (Stream stream = response.GetResponseStream())
using (StreamReader reader = new StreamReader(stream, Encoding.UTF8))
{
var jsonResponse = JsonConvert.Import<T>(reader);
jsonResponse evaluates to null. When I type the url: https://api.betfair.com/exchange/bet...arketCatalogue into the browser, I get the response:
{"jsonrpc":"2.0","error":{"code":-32700,"message":"DSC-0008"}}
Has something changed with BF API over the weekend?
Thanks
I had an app that's been working since last year without issue.
Now, since yesterday (Monday 27th), I am hitting problems. Specifically, using the solution provided online (c#) the issue is that
using (WebResponse response = GetWebResponse(request))
using (Stream stream = response.GetResponseStream())
using (StreamReader reader = new StreamReader(stream, Encoding.UTF8))
{
var jsonResponse = JsonConvert.Import<T>(reader);
jsonResponse evaluates to null. When I type the url: https://api.betfair.com/exchange/bet...arketCatalogue into the browser, I get the response:
{"jsonrpc":"2.0","error":{"code":-32700,"message":"DSC-0008"}}
Has something changed with BF API over the weekend?
Thanks


Comment