45 lines
		
	
	
		
			1.2 KiB
		
	
	
	
		
			Go
		
	
	
	
			
		
		
	
	
			45 lines
		
	
	
		
			1.2 KiB
		
	
	
	
		
			Go
		
	
	
	
| package main
 | |
| 
 | |
| // MUST (client and server)  application/ld+json; profile="https://www.w3.org/ns/activitystreams
 | |
| // SHOULD application/activity+json
 | |
| 
 | |
| // public actor https://www.w3.org/ns/activitystreams#Public
 | |
| 
 | |
| func main() {
 | |
| 	panic(asfhttp.New("my.site").Run())
 | |
| }
 | |
| 
 | |
| // {
 | |
| // 	"@context": ["https://www.w3.org/ns/activitystreams",
 | |
| // 				 {"@language": "en"}],
 | |
| // 	"type": "Like",
 | |
| // 	"actor": "https://dustycloud.org/chris/",
 | |
| // 	"name": "Chris liked 'Minimal ActivityPub update client'",
 | |
| // 	"object": "https://rhiaro.co.uk/2016/05/minimal-activitypub",
 | |
| // 	"to": ["https://rhiaro.co.uk/#amy",
 | |
| // 		   "https://dustycloud.org/followers",
 | |
| // 		   "https://rhiaro.co.uk/followers/"],
 | |
| // 	"cc": "https://e14n.com/evan"
 | |
| //   }
 | |
| 
 | |
| // {
 | |
| // 	"@context": [
 | |
| // 		"https://www.w3.org/ns/activitystreams",
 | |
| // 		{
 | |
| // 			"@language": "en"
 | |
| // 		}
 | |
| // 	],
 | |
| // 	"type": "Like",
 | |
| // 	"to": [
 | |
| // 		"https://rhiaro.co.uk/#amy",
 | |
| // 		"https://dustycloud.org/followers",
 | |
| // 		"https://rhiaro.co.uk/followers/"
 | |
| // 	],
 | |
| // 	"cc": [
 | |
| // 		"https://e14n.com/evan"
 | |
| // 	],
 | |
| // 	"object": "https://rhiaro.co.uk/2016/05/minimal-activitypub",
 | |
| // 	"actor": "https://dustycloud.org/chris/",
 | |
| // 	"name": "Chris liked 'Minimal ActivityPub update client'"
 | |
| // }
 |