mirror of
https://git.exozy.me/a/fuwuqi.git
synced 2024-11-22 09:01:05 +00:00
Minor code tweaks
This commit is contained in:
parent
6900034f2e
commit
60bf76a75e
2 changed files with 2 additions and 3 deletions
|
@ -5,11 +5,10 @@ from email.utils import formatdate
|
|||
from requests import post
|
||||
from sys import argv
|
||||
|
||||
date = formatdate(usegmt=True)
|
||||
|
||||
with open(argv[1], 'rb') as f:
|
||||
activity = f.read()
|
||||
|
||||
date = formatdate(usegmt=True)
|
||||
digester = hashes.Hash(hashes.SHA256())
|
||||
digester.update(activity)
|
||||
digest = b64encode(digester.finalize()).decode()
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"@context": "https://www.w3.org/ns/activitystreams",
|
||||
"id": "https://0.exozy.me/users/test.outbox/follow",
|
||||
"id": "https://0.exozy.me/users/test.outbox#follow",
|
||||
"type": "Follow",
|
||||
"actor": "https://0.exozy.me/users/test.jsonld",
|
||||
"object": "https://social.exozy.me/users/a"
|
||||
|
|
Loading…
Reference in a new issue