python flask implementation of activity pub actor
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
528 B

{
"@context": [
"https://www.w3.org/ns/activitystreams",
"https://w3id.org/security/v1"
],
"id": "{{domain}}/users/{{actor}}",
"type": "Person",
"preferredUsername": "{{preferred_username}}",
"inbox": "{{domain}}/users/{{actor}}/inbox",
"publicKey": {
"id": "{{domain}}/users/{{actor}}#main-key",
"owner": "{{domain}}/users/{{actor}}",
"publicKeyPem": "{{public_key}}"
},
"icon":{
"type":"Image",
"mediaType":"image/png",
"url":"https://homebrewserver.club/images/international-switchboard11.png"
}
}