-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathactor.json
31 lines (31 loc) · 893 Bytes
/
actor.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
{
"@context": [
"https://www.w3.org/ns/activitystreams",
"https://w3id.org/security/v1"
],
"id": "https://<YOUR_HOST>/actor",
"type": "Person",
"followers": "https://<YOUR_HOST>/followers",
"preferredUsername": "<YOUR_ACCOUNT_NAME>",
"name": "<YOUR_DISPLAY_NAME>",
"summary": "<YOUR_BIO>",
"discoverable": true,
"published": "<PICK_A_DATE_YOU_LIKE>",
"inbox": "https://<YOUR_HOST>/inbox",
"outbox": "https://<YOUR_HOST>/outbox",
"publicKey": {
"id": "https://<YOUR_HOST>/actor#main-key",
"owner": "https://<YOUR_HOST>/actor",
"publicKeyPem": "<YOUR_PUBLIC_KEY>"
},
"icon": {
"type": "Image",
"mediaType": "image/jpeg",
"url": "<YOUR_AVATAR_URL>"
},
"image": {
"type": "Image",
"mediaType": "image/png",
"url": "<YOUR_HEADER_URL>"
}
}