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

Cross-origin Link headers

Technical Discussion
4 2 17

Gli ultimi otto messaggi ricevuti dalla Federazione
Post suggeriti
  • 0 Votes
    7 Posts
    29 Views
    @rauschma Mastodon fully displays Markdown. And if your post is over a certain character count, they snip it and add a “Read more…” so that those who are interested in reading lots of text can.
  • 0 Votes
    5 Posts
    31 Views
    @pfefferle Thanks, Mr. ActivityPub. I'll have an eye on that.
  • "Security" category

    Meta security activitypub cve
    6
    0 Votes
    6 Posts
    20 Views
    thisismissem@hachyderm.io hmm that's fair. I don't think it precludes interested parties from having these discussions though. I'm not sure what the right solution is.
  • 0 Votes
    1 Posts
    17 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.