an ActivityPub testing area in Flask
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

22 lines
544 B

{
"@context": [
"https://www.w3.org/ns/activitystreams",
"https://w3id.org/security/v1"
],
"id": "{{ domain }}/users/{{ actor }}",
"type": "Person",
"preferredUsername": "{{ preferredUsername }}",
"inbox": "{{ domain }}/users/{{ actor }}/inbox",
"publicKey": {
"id": "{{ domain }}/users/{{ actor }}#main-key",
"owner": "{{ domain }}/users/{{ actor }}",
"publicKeyPem": "{{ publicKey }}"
},
"icon": {
"type": "Image",
"mediaType": "image/jpg",
"url": "https://ap.virtualprivateserver.space/static/icons/icon.jpg"
}
}