CoinbaseExchange.NET
CoinbaseExchange.NET copied to clipboard
A C# wrapper around the exchange.coinbase.com REST API
public enum RequestPaginationType : int { Indeterminate = 0, Before = 1, After = 2 } Passing After or Before will result in the same CB-Before and CB-After being passed,...
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;