1
0
mirror of https://github.com/astaxie/beego.git synced 2024-06-23 03:24:13 +00:00

httplib: fix the header function for User-Agent

This commit is contained in:
astaxie 2014-09-05 23:21:41 +08:00
parent f7cd1479ba
commit 647a47517d
2 changed files with 11 additions and 1 deletions

View File

@ -355,7 +355,7 @@ func (b *BeegoHttpRequest) getResponse() (*http.Response, error) {
Jar: jar,
}
if b.setting.UserAgent != "" {
if b.setting.UserAgent != "" && b.req.Header.Get("User-Agent") == "" {
b.req.Header.Set("User-Agent", b.setting.UserAgent)
}

View File

@ -203,3 +203,13 @@ func TestToFile(t *testing.T) {
t.Fatal(err)
}
}
func TestHeader(t *testing.T) {
req := Get("http://httpbin.org/headers")
req.Header("User-Agent", "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/31.0.1650.57 Safari/537.36")
str, err := req.String()
if err != nil {
t.Fatal(err)
}
t.Log(str)
}