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

A question about #ActivityPub account migration.

General Discussion
12 7 4

Gli ultimi otto messaggi ricevuti dalla Federazione
Post suggeriti
  • @julian@fietkau.social

    Moved Uncategorized activitypub fediverse webfinger
    3
    0 Votes
    3 Posts
    3 Views
    @nick Mit anderen Worten: https://wrong.webfinger-canary.fietkau.software/canary ist die ActivityPub-ID des Accounts, @​ canary​ @ correct.webfinger-canary.fietkau.software ist das Handle.Ich hab mir das auch nicht ausgedacht, ich mache bloß Werbung dafür. 😄 Vielleicht hilft dir Mastodons Beschreibung: https://docs.joinmastodon.org/admin/config/#web_domainGetestet habe ich das teils mit eigenen Accounts, teils durch Nachfragen bei Freunden.Ansonsten noch Fragen? Bin gespannt auf deine Implementation!
  • 0 Votes
    1 Posts
    10 Views
    みんなで別の一つの場所に引っ越しするんじゃなくて、それぞれが #ActivityPub に対応した場所に行けばいいじゃない? 「Twitterからの移住先なんてあるワケねぇぇぇんだよぉぉぉぉぉぉォォォ~~~~~~~~~~~~~!!」長すぎるポストなのに共感集まる - Togetterhttps://togetter.com/li/2634207
  • 0 Votes
    1 Posts
    14 Views
    Week in Fediverse 2025-10-31Servers- Mitra v4.12.0- Manyfold v0.127.0- snac v2.84- Ktistec v3.1.2- Misskey v2025.10.2- Mastodon 4.5 for Developers- Atlas: A social mapping app that lets you post geolocated notes on the FediverseClients- Pachli v3.1.0- Mastodon for iOS v2025.07- NeoDB You v1.0.5- Thunder v0.8.0Tools and Plugins- feed2fedi v3.3.0- Poduptime v5.5.6For developers- NGI0 Progress report #0 (GoActivityPub)Articles- Fediverse instances on weird hardware, networks and operating systems- There is One Fediverse. There are a Million Pickleball Courts.- A Mastodon Migration From Bluesky Would Be Different- How *you* (librarians and those working in publishing, law, and government) should use ActivityPub and Why- Fediverse Report – #141-----#WeekInFediverse #Fediverse #ActivityPubPrevious edition: https://mitra.social/objects/019a17cf-e370-2278-c196-713c73e5cdea
  • 0 Votes
    1 Posts
    19 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.