1
0
Fork 0

Change default Accept header

This commit is contained in:
Frédéric Guillot 2024-01-13 13:24:20 -08:00
parent b8c6c64e9c
commit ce32d181d5

View file

@ -16,6 +16,7 @@ import (
const ( const (
defaultHTTPClientTimeout = 20 defaultHTTPClientTimeout = 20
defaultHTTPClientMaxBodySize = 15 * 1024 * 1024 defaultHTTPClientMaxBodySize = 15 * 1024 * 1024
defaultAcceptHeader = "application/xml, application/atom+xml, application/rss+xml, application/rdf+xml, application/feed+json, text/html, */*;q=0.9"
) )
type RequestBuilder struct { type RequestBuilder struct {
@ -154,7 +155,7 @@ func (r *RequestBuilder) ExecuteRequest(requestURL string) (*http.Response, erro
} }
req.Header = r.headers req.Header = r.headers
req.Header.Set("Accept", "*/*") req.Header.Set("Accept", defaultAcceptHeader)
req.Header.Set("Connection", "close") req.Header.Set("Connection", "close")
slog.Debug("Making outgoing request", slog.Group("request", slog.Debug("Making outgoing request", slog.Group("request",