TIL: #Mastodon specifically treats actor URIs with the pattern `https:///actor` as instance actors.'n'n #fedidev #ActivityPub
-
<del datetime="2025-10-12T21:34:00+09:00">TIL: #Mastodon specifically treats actor URIs with the pattern
https://<domain>/actor
as instance actors.</del> <ins datetime="2025-10-12T21:34:00+09:00">Turns out I misread the code. 😅</ins>#fedidev #ActivityPub
-
-
Where are you seeing this?
Mastodon does serve its instance actor as
/actor
, however it doesn't actually track the "instance actor" as a concept, because there's actually no way to do so. fep-2677 doesn't define one, it just says the instance actor must be an Application, and adds a reference to that actor to NodeInfo.That is, from the actor document alone, there is no way to know if it is the "instance actor" (remembering too that AP doesn't have any notion of an "instance" or "server")
Likewise, internally in Mastodon, the instance actor record will have the ID of -99.
-
@thisismissem@activitypub.space Ah, I seem to have misread the code. I was confused by Mastodon serving its own instance actor from
/actor
. Thanks for the clarification!