Closed phochste closed 3 months ago
This library is a Fediverse client library, not an ActivityPub client. So it is not possible.
Basically, this library doesn't handle raw ActivityPub payloads. It requests Fediverse (Mastodon, Pleroma, etc...) servers to get notifications. These servers return JSON payload according to their API response, like https://docs.joinmastodon.org/methods/notifications/ ActivityStreams2 JSON is probably parsed on these server sides. So, megalodon can't see the raw ActivityStreams2 JSON.
Thanks for the information.
For a project I am using megalodon to retrieve all public notifications for an account using
getNotifications
andgetNotifications
. But, this provides me the parsed result. I would like to have read to the raw AS2 notifications (before it is parsed). Is this possible?