Go to file
Matt Baer 10584314ee Support Go modules 2020-03-17 13:03:21 -04:00
.gitignore Inital commit 2019-09-04 12:34:29 +03:00
TODO Cleanup 2019-10-08 15:23:25 +03:00
actor.go Remove double slash in unfollow activity 2019-12-05 15:28:12 +02:00
go.mod Support Go modules 2020-03-17 13:03:21 -04:00
go.sum Support Go modules 2020-03-17 13:03:21 -04:00
http.go Fix \\n in the publicKey and add http 204 as a success condition 2019-11-08 16:01:18 +02:00
nodeinfo.go Add instance nodeinfo 2019-10-28 23:14:36 -04:00
readme.md Cleanup 2019-10-08 15:23:25 +03:00
remoteActor.go Fix whoAmI to use json marshalling instead of string concatenation 2019-11-08 10:42:53 +02:00
setup.go Fixes to enable following pixelfed 2019-09-20 16:21:21 +03:00
snips.md Make activityserve a free-standing library ready to "go get" it 2019-09-14 11:25:52 +03:00
util.go Fix \\n in the publicKey and add http 204 as a success condition 2019-11-08 16:01:18 +02:00

readme.md

ActivityServe

A very light ActivityPub library in go

This library was built to support the very little functions that pherephone requires. It might never be feature-complete but it's a very good point to start your activityPub journey. Take a look at activityserve-example for a simple main file that uses activityserve to post a "Hello, world" message.

For now it supports following and unfollowing users, accepting follows, announcing (boosting) other posts and this is pretty much it.

The library is still a moving target and the api is not guaranteed to be stable.

You can override the auto-accept upon follow by setting the actor.OnFollow to a custom function.