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

serious question: has anyone done Bad Apple over #ActivityPub yet?

General Discussion
9 5 62

Gli ultimi otto messaggi ricevuti dalla Federazione
Post suggeriti
  • 0 Votes
    12 Posts
    57 Views
    @julian Cool!
  • 0 Votes
    2 Posts
    9 Views
    @vftdanTor: here is a list https://fedilist.com/instance?q=&ip=&software=&registrations=&onion=onlyI2P: http://mastodon.i2p is currently onlineYggdrasil: there was a few, but I can't find them now
  • 0 Votes
    1 Posts
    9 Views
    Mastodonを運営している管理者の方ですか?⚠️ バージョン4.5にアップグレードしてください! ⚠️古いバージョンのMastodonには既知のセキュリティ脆弱性があります。また、古いインスタンスでは、最新バージョンで導入された特定のコンテンツ(引用など)が正しく表示・通信されない場合があります。ユーザーのセキュリティ、互換性、利便性を確保するために、Mastodonインスタンスをバージョン4.5にアップグレードすることをお勧めします。#Mastodon #Fediverse #ActivityPub #Fedi #FediAdmin #Administrator #Admin #MastoAdmin
  • 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.