Closed SergeevGregory closed 5 years ago
Left a message on the KuCoin API Telegram, this is the only endpoint throwing this error.
Lets see what they say.
Same issue with PlaceLimitOrder… :(
I'll take a look tonight
Dear Matt, I think I found problem.
It is in string:
var response = body == null ? await _restRepo.PostApi<ApiResponse<T>, SortedDictionary<string, object>>(url, body, headers) : await _restRepo.PostApi<ApiResponse<T>>(url, headers);
fix:
var response = body != null ? await _restRepo.PostApi<ApiResponse<T>, SortedDictionary<string, object>>(url, body, headers) : await _restRepo.PostApi<ApiResponse<T>>(url, headers);
Now all work well, please, update nuget packages :)
Dear developer, today I tested new feature of version 0.3.0 - GetPrivateChannels. It doesn't work: Exception: {"code":"400005","msg":"Invalid KC-API-SIGN"}
Other functions like GetBalances work good. Please, fix this issue :)