第七色在线视频,2021少妇久久久久久久久久,亚洲欧洲精品成人久久av18,亚洲国产精品特色大片观看完整版,孙宇晨将参加特朗普的晚宴

為了賬號安全,請及時(shí)綁定郵箱和手機(jī)立即綁定
已解決430363個(gè)問題,去搜搜看,總會有你想問的

使用http.NewRequest調(diào)用rest API時(shí),響應(yīng)正文亂碼

使用http.NewRequest調(diào)用rest API時(shí),響應(yīng)正文亂碼

Go
慕容森 2023-07-31 16:24:14
我嘗試使用 Go 調(diào)用 API。使用 Postman 時(shí)一切正常。但如果我使用 Postman 的 Go 代碼,響應(yīng)就會出現(xiàn)亂碼/不清楚。在我正在使用的代碼下方:func CallAPI() {    url := "https://url"    req, _ := http.NewRequest("GET", url, nil)    req.Header.Add("Authorization", "Bearer Token is normaly here")    req.Header.Add("User-Agent", "PostmanRuntime/7.19.0")    req.Header.Add("Accept", "Accept: application/json")    req.Header.Add("Cache-Control", "no-cache")    req.Header.Add("Postman-Token", "Postman token normaly here")    req.Header.Add("Host", "host normaly here")    req.Header.Add("Accept-Encoding", "gzip, deflate")    req.Header.Add("Connection", "keep-alive")    req.Header.Add("cache-control", "no-cache")    res, _ := http.DefaultClient.Do(req)    defer res.Body.Close()    body, _ := ioutil.ReadAll(res.Body)    fmt.Println(string(body))}我使用時(shí)得到的響應(yīng)fmt.Println(string(body))如下所示。我還使用此代碼嘗試了其他 API,并得到了相同的結(jié)果。r?痱? 我還嘗試將 json 解組為結(jié)構(gòu),但出現(xiàn)以下錯(cuò)誤 Invalid character '\x1f' looking for beginning of value我認(rèn)為這與解碼有關(guān)。但我不知道是什么。
查看完整描述

1 回答

?
阿晨1998

TA貢獻(xiàn)2037條經(jīng)驗(yàn) 獲得超6個(gè)贊

您要求服務(wù)器發(fā)送壓縮的內(nèi)容 (?req.Header.Add("Accept-Encoding", "gzip, deflate")),這就是您得到的:gzip 響應(yīng),由響應(yīng)標(biāo)頭指示:Content-Encoding:[gzip]。

刪除該標(biāo)頭(不設(shè)置Accept-Encoding請求標(biāo)頭),您應(yīng)該得到純 JSON 響應(yīng)?;蛘咦约航獯a gzip 響應(yīng)。

請注意,如果省略此標(biāo)頭,默認(rèn)傳輸仍會請求gzip編碼,但也會透明地對其進(jìn)行解碼。由于您明確請求它,因此不會發(fā)生透明的自動解碼。這在Transport.DisableCompression現(xiàn)場有記錄:

// DisableCompression, if true, prevents the Transport from

// requesting compression with an "Accept-Encoding: gzip"

// request header when the Request contains no existing

// Accept-Encoding value. If the Transport requests gzip on

// its own and gets a gzipped response, it's transparently

// decoded in the Response.Body. However, if the user

// explicitly requested gzip it is not automatically

// uncompressed.

DisableCompression bool


查看完整回答
反對 回復(fù) 2023-07-31
  • 1 回答
  • 0 關(guān)注
  • 230 瀏覽

添加回答

舉報(bào)

0/150
提交
取消
微信客服

購課補(bǔ)貼
聯(lián)系客服咨詢優(yōu)惠詳情

幫助反饋 APP下載

慕課網(wǎng)APP
您的移動學(xué)習(xí)伙伴

公眾號

掃描二維碼
關(guān)注慕課網(wǎng)微信公眾號