'How can I post an order by API

I wrote a sample code to test Binance Api :

 var apiClient = new ApiClient("API-Key", "API-Secret");
 var binanceClient = new BinanceClient(apiClient);

But program hangs when run the below method :

var buyOrder = binanceClient.PostNewOrder("ethbtc", 1m, 0.045m, OrderSide.BUY).Result;


Sources

This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.

Source: Stack Overflow

Solution Source