You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Mastodon federates by sending the Accept header as:
application/activity+json, application/ld+json
Which should match based on the alternatives laid out on the ActivityPub spec. However, it doesn't as the underlying code is not robust. The golang HTTP library doesn't have good built-in manipulation of the Accept or Content-Type (Media Type), so I will need to partially parse the BNF properly.
The previous fix in #43 was only a band-aid fix for the C2S implementation report. It is not a sufficient solution.
The text was updated successfully, but these errors were encountered:
Mastodon federates by sending the
Accept
header as:application/activity+json, application/ld+json
Which should match based on the alternatives laid out on the ActivityPub spec. However, it doesn't as the underlying code is not robust. The golang HTTP library doesn't have good built-in manipulation of the
Accept
orContent-Type
(Media Type), so I will need to partially parse the BNF properly.The previous fix in #43 was only a band-aid fix for the C2S implementation report. It is not a sufficient solution.
The text was updated successfully, but these errors were encountered: