I need help I can't deserialize my json
var myWebClient = new WebClient();
var js = new JavaScriptSerializer();
var json = myWebClient.DownloadString("https://api.gdax.com/products/btc-usd/book?level=2");
OrderBookContainerExmo container = js.Deserialize<OrderBookContainerExmo>(json);
I'm getting:
An unhandled exception of type 'System.Net.WebException' occurred in System.dll
Additional information:
The remote server returned an error: (400) Bad Request.
On this line:
var json = myWebClient.DownloadString("https://api.gdax.com/products/btc-usd/book?level=2");