Remove missing Content-Type.

This commit is contained in:
Naoki Kosaka 2019-06-02 16:33:25 +09:00
parent 9befbf206c
commit 1654523083
2 changed files with 2 additions and 2 deletions

View File

@ -73,7 +73,7 @@ func (actor *Actor) RetrieveRemoteActor(url string, uaString string, cache *cach
} }
} }
req, _ := http.NewRequest("GET", url, nil) req, _ := http.NewRequest("GET", url, nil)
req.Header.Set("Accept", "application/activity+json, application/ld+json") req.Header.Set("Accept", "application/activity+json")
req.Header.Set("User-Agent", uaString) req.Header.Set("User-Agent", uaString)
client := new(http.Client) client := new(http.Client)
resp, err := client.Do(req) resp, err := client.Do(req)

View File

@ -34,7 +34,7 @@ func appendSignature(request *http.Request, body *[]byte, KeyID string, publicKe
func sendActivity(inboxURL string, KeyID string, body []byte, publicKey *rsa.PrivateKey) error { func sendActivity(inboxURL string, KeyID string, body []byte, publicKey *rsa.PrivateKey) error {
req, _ := http.NewRequest("POST", inboxURL, bytes.NewBuffer(body)) req, _ := http.NewRequest("POST", inboxURL, bytes.NewBuffer(body))
req.Header.Set("Content-Type", "application/activity+json, application/ld+json") req.Header.Set("Content-Type", "application/activity+json")
req.Header.Set("User-Agent", uaString) req.Header.Set("User-Agent", uaString)
req.Header.Set("Date", httpdate.Time2Str(time.Now())) req.Header.Set("Date", httpdate.Time2Str(time.Now()))
appendSignature(req, &body, KeyID, publicKey) appendSignature(req, &body, KeyID, publicKey)