Person.prototype.getInbox(options?: { documentLoader?: DocumentLoader; contextLoader?: DocumentLoader; suppressError?: boolean; }): Promise<OrderedCollection | null>
The inbox stream contains all activities received by the actor. The server SHOULD filter content according to the requester's permission. In general, the owner of an inbox is likely to be able to access all of their inbox contents. Depending on access control, some other content may be public, whereas other content may require authentication for non-owner users, if they can access the inbox at all.
The server MUST perform de-duplication of activities returned by the inbox.
Duplication can occur if an activity is addressed both to an actor's
followers, and a specific actor who also follows the recipient actor,
and the server has failed to de-duplicate the recipients list.
Such deduplication MUST be performed by comparing the id
of the activities
and dropping any activities already seen.
options: { documentLoader?: DocumentLoader; contextLoader?: DocumentLoader; suppressError?: boolean; }
Promise<OrderedCollection | null>