CoinbaseExchange.NET icon indicating copy to clipboard operation
CoinbaseExchange.NET copied to clipboard

POST Method Wont Work

Open MikeZ87 opened this issue 8 years ago • 0 comments

Broken: case "POST": var requestBody = new StringContent(body); response = await httpClient.PostAsync(absoluteUri, requestBody); break; Fixed: case HttpMethods.POST: var requestBody = new StringContent(body, Encoding.UTF8, ContentType); response = await httpClient.PostAsync(absoluteUri, requestBody); break;

MikeZ87 avatar Nov 20 '16 16:11 MikeZ87