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

Hello!

Uncategorized
2 2 6
Feed RSS

Gli ultimi otto messaggi ricevuti dalla Federazione
Post suggeriti
  • 0 Votes
    3 Posts
    13 Views
    @julian @deborahh I am not sure! I believe lepointdevente.com uses their own in-house solution.
  • 0 Votes
    1 Posts
    10 Views
    Sommaire du Guide MastodonSommaire du guide d’utilisation et tutoriel non-officiel de Mastodon en français, mis à jour régulièrement pour suivre les nouveautés ou changements des nouvelles versions.https://www.didiermary.fr/sommaire-du-guide-mastodon/#ActivityPub #Fediverse #Mastodon #Microblogging #Twitter
  • Buon fedversario a me 3 anni su #Mastodon

    Uncategorized mastodon
    8
    0 Votes
    8 Posts
    41 Views
    @DigiDavidex @devol @ribby auguri e 100 di questi giorni!
  • 0 Votes
    1 Posts
    18 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.