HttpWebRequest.GetResponse() keeps getting timed out

前端 未结 5 2094
悲哀的现实
悲哀的现实 2020-12-17 09:16

i wrote a simple C# function to retrieve trade history from MtGox with following API call:

https://data.mtgox.com/api/1/BTCUSD/trades?since=
         


        
5条回答
  •  清歌不尽
    2020-12-17 09:24

    For what it's worth, I was experiencing the same issues with timeouts every time I used it, even though calls went through to the server I was calling. The problem in my case was that I had Expect set to application/json, when that wasn't what the server was returning.

提交回复
热议问题