add date and request target headers to make pixelfed happy

(cherry picked from commit 3604220c2a5aedddf25143cc5fd87ed576d34702)
This commit is contained in:
Mario 2019-11-04 11:33:16 +00:00
parent 64c6e25896
commit 02fd7e51ff

View File

@ -87,8 +87,8 @@ class Activity {
$headers = [
'Accept' => 'application/activity+json, application/ld+json; profile="https://www.w3.org/ns/activitystreams"',
'Host' => $m['host'],
'(request-target)' => 'get ' . get_request_string($url),
'Date' => datetime_convert('UTC','UTC','now','D, d M Y H:i:s') . ' UTC'
'Date' => datetime_convert('UTC','UTC', 'now', 'D, d M Y h:i:s \\G\\M\\T'),
'(request-target)' => 'get ' . get_request_string($url)
];
if (isset($token)) {
$headers['Authorization'] = 'Bearer ' . $token;