• 1 Post
  • 18 Comments
Joined 1 year ago
cake
Cake day: June 21st, 2023

help-circle














  • That’s likely because you are asking the api for a paginated list of posts/comments. When you request page 1 at one point and page 2 at a later time, the list of posts can change inbetween, so posts that were part of page 1 have now been pushed down into page to, so you get them again when loading page 2. The solution is to keep a list of post ids that are already in your list of posts and don’t load those again, same with comments.



  • You would have to support each service separately, because they all work differently.

    What connects Lemmy, Mastodon and other fediverse services is the ActivityPub protocol, that’s the standardized communication protocol that makes everything run. The individual instances run different software that offer entirely different APIs (application programming interface; basically the language that defines how an app talks to a service) so in order to support Mastodon, Lemmy and Kbin, an app must explicitly implement the APIs for those three services.

    So an app that generally just supports every service that will be added to the fediverse in the future can’t be made unless we agree on some form of standard API, which we haven’t (yet) and which may not even be feasable, because different services have much different capabilities.

    A fediverse discord clone would offer completely different data structures and functionality than Lemmy, so an app that magically just works with both isn’t possible to make.