diff --git a/core/signatures.py b/core/signatures.py index bf0690d..798a781 100644 --- a/core/signatures.py +++ b/core/signatures.py @@ -219,7 +219,7 @@ class HttpSignature: body_bytes = b"" # GET requests get implicit accept headers added if method == "get": - headers["Accept"] = "application/ld+json" + headers["Accept"] = "application/activity+json,application/ld+json" # Sign the headers signed_string = "\n".join( f"{name.lower()}: {value}" for name, value in headers.items()