MikeZ87

Results 4 issues of MikeZ87

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;

https://github.com/sefbkn/gdax.netcore/blob/1785f8b93b5b9c07d627d4debe4e808728f752a6/src/Api/Clients/RealtimeClient.cs#L20 Curious about the usage of IRealtimeClient?

Should "OrderClient" implement IOrderClient? https://github.com/sefbkn/gdax.netcore/blob/1785f8b93b5b9c07d627d4debe4e808728f752a6/src/Api/Clients/OrderClient.cs#L18