ActivityPub: a federated social web standard
1–10 of 57 posts
Re: ActivityPub: a federated social web standard
#2Re: ActivityPub: a federated social web standard
#3Re: ActivityPub: a federated social web standard
#4Re: ActivityPub: a federated social web standard
#5Looking at the ID format in the first example, I have to recommend against including the protocol ("https:") in a key/ID. This makes it hard for people to later upgrade from HTTP to HTTPS, because it breaks all of those references. It also makes it hard to try out new protocols side by side, like IPFS.
Re: ActivityPub: a federated social web standard
#6Re: ActivityPub: a federated social web standard
#7This seems like a very constricting protocol, though: the one-to-one correspondence between a user and a server means I need to individually post my activity to the "inbox" of everyone who wants to read it (or they poll my "outbox" - I'm not sure). Not a recipe for an efficient system. It's called ActivityPub, so this was clearly a design decision to meet the goal of being decentralized.
But I probably wouldn't implement this standard in a project unless I modified it a bit so that many clients could share a server.
Re: ActivityPub: a federated social web standard
#8Adding 'Build ActivityHub test server' to my ever growing to-do list! If we build it, THEY* will come.
*Everyone else, obv.
Re: ActivityPub: a federated social web standard
#9I really like the idea of a social web standard. This seems like a very constricting protocol, though: the one-to-one correspondence between a user and a server means I need to individually post my activity to the "inbox" of everyone who wants to read it (or they poll my "outbox" - I'm not sure). Not a recipe for an efficient system. It's called ActivityPub, so this was clearly a design decision to meet the goal of b…
Re: ActivityPub: a federated social web standard
#10Looking at the ID format in the first example, I have to recommend against including the protocol ("https:") in a key/ID. This makes it hard for people to later upgrade from HTTP to HTTPS, because it breaks all of those references. It also makes it hard to try out new protocols side by side, like IPFS.
A URL always includes the scheme. ` http://www.example.com/1/ ` and ` https://www.example.com/1/` could represent different content. If you want to change the scheme but keep the old links working, you need to redirect from the old to the new.