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

Facciamo che il 2026 sia l'anno dei social aperti!

Fediverso
39 14 140

Gli ultimi otto messaggi ricevuti dalla Federazione
Post suggeriti
  • 0 Votes
    1 Posts
    5 Views
    Guest?
    What’s up with delivery addressing being in both #activitypub activities and objects? If my app publishes a nonpublic Create with different direct delivery targets than the created Object, what happens? What is supposed to happen? I know the spec recommends against it (suggests duplicating the addresses in both), but why was this considered a feature to allow? I think there should have been a non-AS2 envelope for addressing rather than embedding it (twice) into the content. You know, like email.
  • 0 Votes
    5 Posts
    42 Views
    @thibaultmol @activitypub.blog I added the alt-text, thanks for the reminder!
  • 0 Votes
    1 Posts
    14 Views
    Es wäre etwas anderes, wenn ich keine Beweise hätte. Wenn ich nur eine zufällige Person wäre, die wilde Behauptungen ohne jegliche Dokumentation aufstellt, wäre das natürlich Unsinn.Aber ich habe Beweise. Ich habe das aus erster Hand gesehen und sogar das Risiko auf mich genommen, Dinge von der Arbeit zu teilen, um es zu untermauern.Dieser Ort soll doch besser sein als Blue Sky, Twitter, Facebook und Reddit – richtig?Wenn dem so ist, warum werden dann Betrüger geschützt und behandelt, als gehörten sie zu einer besonders geschützten Personengruppe?#Betrug #Täuschung #Fediverse #ActivityPub #Twitter #Reddit #Facebook #BlueSky
  • 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.