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.
 

17 lines
382 B

{
"@context": [
"https://www.w3.org/ns/activitystreams",
"https://w3id.org/security/v1"
],
"id": "{{domain}}/users/{{actor}}",
"type": "Person",
"preferredUsername": "{{username}}",
"inbox": "{{domain}}/users/{{actor}}/inbox",
"publicKey": {
"id": "{{domain}}/users/{{actor}}#main-key",
"owner": "{{domain}}/users/{{actor}}",
"publicKeyPem": "{{public_key}}"
}
}