WebClient on WP7 - Throw "A request with this method cannot have a request body"
- by Peter Hansen
If I execute this code in a Consoleapp it works fine:
string uriString = "http://url.com/api/v1.0/d/" + Username + "/some?amount=3&offset=0";
WebClient wc = new WebClient();
wc.Headers["Content-Type"] = "application/json";
wc.Headers["Authorization"] = AuthString.Replace("\\", "");
string…