Skip to content

Journey

qwazix edited this page Aug 17, 2019 · 7 revisions

Useful curl commands

How to use curl to get your ActivityPub inbox

curl -X GET 'http://localhost:8081/actor/inbox' -H "Accept: application/activity+json; profile=\"https://www.w3.org/ns/activitystreams\"" 

Get mastodon actor info

curl -X GET https://mastodon.social/@qwazix -H "Accept: application/activity+json; profile=\"https://www.w3.org/ns/activitystreams\""

Get mastodon actor outbox (latest toots)

curl -X GET https://mastodon.social/users/qwazix/outbox?page=true -H "Accept: application/activity+json; profile=\"https://www.w3.org/ns/activitystreams\""

What a writefreely instance POST's to it's followers when there's a new post

curl http://floorb.qwazix.com/actor/inbox -X POST -H "Content-Type: application/activity+json; profile=\"https://www.w3.org/ns/activitystreams\"" -H "Accept: application/activity+json" -d '{"@context":["https://www.w3.org/ns/activitystreams",{"commentsEnabled":"sc:Boolean","sc":"http://schema.org#"}],"type":"Create","id":"http://writefreely.xps/api/posts/3y2vettm5r","actor":"http://writefreely.xps/api/collections/qwazix","published":"2019-08-08T16:02:49.613334687Z","to":["https://www.w3.org/ns/activitystreams#Public"],"cc":["http://floorb.qwazix.com/actor/"],"object":{"type":"Article","id":"http://writefreely.xps/api/posts/3y2vettm5r","published":"2019-08-08T16:02:49.613334687Z","inReplyTo":null,"url":"http://writefreely.xps/this-is-post-number-3","attributedTo":"http://writefreely.xps/api/collections/qwazix","to":["https://www.w3.org/ns/activitystreams#Public"],"cc":["http://floorb.qwazix.com/actor/"],"name":"This is post number 3","content":"\u003cp\u003epost 3\u003c/p\u003e\n","contentMap":{"en":"\u003cp\u003epost 3\u003c/p\u003e\n"},"tag":[],"commentsEnabled":false}}'

How to follow

curl http://floorb.qwazix.com/nuerList/inbox -X POST -H "Content-Type: application/activity+json; profile=\"https://www.w3.org/ns/activitystreams\"" -H "Accept: application/activity+json" -d '{"@context":["https://www.w3.org/ns/activitystreams"],"actor":"http://floorb.qwazix.com/nuerList","object":"http://writefreely.xps/api/collections/qwazix","to":"http://writefreely.xps/api/collections/qwazix","type":"Follow", "id":"http://writefreely.xps/api/thisisafakeid"}'