Conversation
Notices
-
MMN-o ✅⃠ (mmn@social.umeahackerspace.se)'s status on Sunday, 17-Feb-2019 12:25:39 UTC MMN-o ✅⃠ @tom79 I'm not sure what you're asking really. Do you want to know the endpoints for subscribing to a !fediverse user on !GNUsocial? If you do a #WebFinger lookup you'll get this:
curl -s https://social.umeahackerspace.se/.well-known/webfinger?resource=acct:mmn@social.umeahackerspace.se | json_pp
...
"href" : "https://social.umeahackerspace.se/api/statuses/user_timeline/2.atom",
"rel" : "http://schemas.google.com/g/2010#updates-from",
...
The Atom feed, just like an PubSubHubbub enabled feed, has metadata for the subscription endpoint:
curl -s https://social.umeahackerspace.se/api/statuses/user_timeline/2.atom | grep rel=.hub
<link href="https://social.umeahackerspace.se/main/push/hub" rel="hub"/>
To this hub you do the subscription dance for the feed URI (i.e. the Atom link from before): https://pubsubhubbub.github.io/PubSubHubbub/pubsubhubbub-core-0.4.html
The activitystreams signalling - please note that this is optional, that is something else.-
MMN-o ✅⃠ (mmn@social.umeahackerspace.se)'s status on Sunday, 17-Feb-2019 12:28:12 UTC MMN-o ✅⃠ @tom79 The atom feed you subscribe to via PuSH there is everything the !GNUsocial user publishes.
If you want to send something "upstream" we use "salmon", to where you can send your own notifications (like "hey, I subscribed to you!" or "you are mentioned in this notice").
-