Skip to content

Piero Bosio Social Web Site Personale Logo Fediverso

Social Forum federato con il resto del mondo. Non contano le istanze, contano le persone

Coming soon to #flohmarkt: FediAuth for any kind of #ActivityPub users.

General Discussion
1 1 0

Gli ultimi otto messaggi ricevuti dalla Federazione
Post suggeriti
  • Blogbastelei

    General Discussion activitypub fediverse plugin wordpress
    1
    0 Votes
    1 Posts
    3 Views
    BlogbasteleiNur ganz kurz, das ActivityPub Plugin ist wieder aktiv. Eigentlich hatte ich es nur nochmal installiert weil ich was nachschauen wollte. Dann habe ich mir gedacht, ich lasse jetzt mal drin.Vielleicht kann ich es tatsächlich demnächst mal brauchen, mal sehen.Man kann dem Blog also wieder im Fediverse folgen unter: @bloghttps://rausgerufen.de/blogbastelei-6/#ActivityPub #Fediverse #Plugin #WordPress
  • 0 Votes
    1 Posts
    7 Views
    I just heard at @fediforum that @altstore is getting #Fediverse integration. When is @fdroidorg getting news and comments via #ActivityPub?
  • 0 Votes
    1 Posts
    9 Views
    Volker Grassmuck (@vgrass https://vgrass.de/) asks:"How can ActivityPub and AtProto join hands so both can fight the Romans rather than each other?"Now here's a question! That makes a great subject for a FediForum session. We are non-partisan with respect to protocols, and want the entire open social web to succeed. And as it is an unconference, the discussion can branch out over several sessions if needed if an action plan were to emerge!#AtProto #ActivityPub
  • 0 Votes
    1 Posts
    11 Views
    Mastodon has a concept called "pinned statuses", which is a special collection attached to a Person actor. https://docs.joinmastodon.org/spec/activitypub/#featured It wasn't readily known how this collection is updated and federated (not without code achaeology), but claire@social.sitedethib.com recently shared some additional info :smiley: The actor itself will issue an Add activity targeting the collection with the status in object. This activity is sent to all followers of the actor. No activity is sent if the actor has no remote followers. A Remove is sent when a pinned post is unpinned. This is what the Add looks like: { "@context": "https://www.w3.org/ns/activitystreams", "type": "Add", "actor": "https://example.org/users/testUser", "target": "https://example.org/users/testUser/collections/featured", "object": "https://example.org/users/testUser/statuses/115266412340579560" } The corresponding Remove is identical except for type, which is of course, Remove.