2017-01-16 51 views
-2

我正在嘗試編寫一個go服務器,它接收來自http請求的數據流。問題是,它一旦收到就會超時{status: connected}如何使連接保持活動狀態?Golang在我的流上超時

func stream() { 
    t := time.Now() 
    a := t.Format("15:03") 
    if a > string("08:30") && a < string("15:00") { 
     color.Red("Streaming. . .") 
     config := oauth1.NewConfig("HIDDEN", "HIDDEN") 
     token := oauth1.NewToken("HIDDEN", "HIDDEN") 
     httpClient := config.Client(oauth1.NoContext, token) 
     path := "https://stream.tradeking.com/v1/market/quotes.json?symbols=aapl" 
     resp, _ := httpClient.Get(path) 
     fmt.Println(resp) 
     body, _ := ioutil.ReadAll(resp.Body) 
     fmt.Printf("Raw Response Body:\n%v\n", string(body)) 
     defer resp.Body.Close() 
    } else { 
     color.Red("%s \nMarkets are closed! Please, come back later.", t) 
    } 
} 

我主要調用這個函數。我還收到類似標題的內容: &{200 OK 200 HTTP/1.1 1 1 map[Date:[Mon, 16 Jan 2017 17:45:36 GMT] X-Powered-By:[Express] Server:[cloudflare-ngi nx] Content-Type:[application/json] Connection:[keep-alive] Set-Cookie:[__cfduid=dcfcf86c79c56e659ce2b1bade3643c 981484588736; expires=Tue, 16-Jan-18 17:45:36 GMT; path=/; domain=.tradeking.com; HttpOnly] Vary:[Accept-Encodin g] Cf-Ray:[322361d0efd40938-DFW]] 0xc42032e0c0 -1 [chunked] false true map[] 0xc4200d21e0 0xc42040cbb0}

+2

什麼是超時?你是自己設置超時還是遠程服務器超時?而且請,經常檢查你的錯誤。 – JimB

回答

0

結果證明市場在MLK日關閉,因此沒有服務器響應。

超時後,遠程服務器超時。