golang http客户端返回错误的内容类型

问题描述 投票:0回答:1

我有一个非常简单的Go程序,该程序在URL上执行HTTP HEAD,并打印响应的内容类型:

package main
import (
        "fmt"
        "net/http"
)
func main() {
        resp, _ := http.Head("https://jira.softwareplant.com/servicedesk/customer/portal/1/")
        fmt.Println(resp.Header.Get("Content-Type"))
}

当我运行它时,它返回以下内容:

$ go run url.go
application/octet-stream;charset=UTF-8

但是,当我使用curl进行相同操作时,它返回不同的内容类型(在原始响应中和重定向之后):

$ curl -I -L https://jira.softwareplant.com/servicedesk/customer/portal/1/
HTTP/1.1 302
Date: Thu, 11 Jun 2020 18:07:26 GMT
Content-Type: text/html;charset=UTF-8
Connection: keep-alive
X-AREQUESTID: 1207x5410258x1
X-XSS-Protection: 1; mode=block
X-Content-Type-Options: nosniff
X-Frame-Options: SAMEORIGIN
Content-Security-Policy: frame-ancestors 'self'
X-ASEN: SEN-L15483924
Set-Cookie: atlassian.xsrf.token=BWV3-4JDO-FP3E-CBA1_b0942d30c14d689f92051e7b2d8467e0a0ce2129_lout; Path=/; Secure
Set-Cookie: JSESSIONID=8FE57CA54FEC626F0521327DCBA1D3DB; Path=/; Secure; HttpOnly
X-ASESSIONID: 18hzbge
X-AUSERNAME: anonymous
Location: /plugins/servlet/desk/portal/1/

HTTP/1.1 302
Date: Thu, 11 Jun 2020 18:07:26 GMT
Content-Type: text/html;charset=UTF-8
Connection: keep-alive
X-AREQUESTID: 1207x5410259x1
X-XSS-Protection: 1; mode=block
X-Content-Type-Options: nosniff
X-Frame-Options: SAMEORIGIN
Content-Security-Policy: frame-ancestors 'self'
X-ASEN: SEN-L15483924
Set-Cookie: atlassian.xsrf.token=BWV3-4JDO-FP3E-CBA1_fcd3f481d084e039075ebbce34039870d7cd044d_lout; Path=/; Secure
Set-Cookie: JSESSIONID=7B895577760D8E31F02B818FA8C0E1B2; Path=/; Secure; HttpOnly
X-ASESSIONID: 289ito
X-AUSERNAME: anonymous
Location: /servicedesk/customer/portal/1//user/login?destination=portal%2F1/

HTTP/1.1 200
Date: Thu, 11 Jun 2020 18:07:26 GMT
Content-Type: text/html;charset=UTF-8
Connection: keep-alive
X-AREQUESTID: 1207x5410260x1
X-XSS-Protection: 1; mode=block
X-Content-Type-Options: nosniff
X-Frame-Options: SAMEORIGIN
Content-Security-Policy: frame-ancestors 'self'
X-ASEN: SEN-L15483924
Set-Cookie: atlassian.xsrf.token=BWV3-4JDO-FP3E-CBA1_dc371dbc76497b29f1fa939a65dc6dd5b3488e7f_lout; Path=/; Secure
Set-Cookie: JSESSIONID=E17E2F0C4B7CA5C9ADDC4BE468A5D459; Path=/; Secure; HttpOnly
X-ASESSIONID: 1byquf1
X-AUSERNAME: anonymous
Cache-Control: no-cache, no-store, no-transform

我做错什么了吗? Go中是否有办法为此类URL获取正确的内容类型?我在Ubuntu上使用Golang 1.14.4。上面的URL并不是唯一出现此问题的URL。

go mime-types content-type http-redirect go-http
1个回答
1
投票

如果更改Go发送的Accept标头,则会得到Content-Type: text/html;charset=UTF-8

package main

import (
        "fmt"
        "net/http"
)

func main() {
        client := &http.Client{}
        req, _ := http.NewRequest("HEAD", "https://jira.softwareplant.com/servicedesk/customer/portal/1/", nil)
        req.Header.Set("Accept", "*/*")
        resp, _ := client.Do(req)
        fmt.Println(resp.Header.Get("Content-Type"))
}
© www.soinside.com 2019 - 2024. All rights reserved.