This commit is contained in:
Anthony Wang 2022-07-11 15:14:32 -05:00
parent 41223c10be
commit 1096aa34d2
Signed by: a
GPG Key ID: BC96B00AEC5F2D76

View File

@ -10,5 +10,5 @@ signed_string = "(request-target): post /inbox\nhost: git.exozy.me\ndate: #{date
signature = Base64.strict_encode64(keypair.sign(OpenSSL::Digest::SHA256.new, signed_string))
header = 'keyId="https://test.exozy.me/api/v1/activitypub/user/test#main-key",headers="(request-target) host date",signature="' + signature + '"'
HTTP.headers({ 'Host': 'mastodon.social', 'Date': date, 'Signature': header })
HTTP.headers({ 'Host': 'git.exozy.me', 'Date': date, 'Signature': header })
.post('https://git.exozy.me/api/v1/activitypub/user/Ta180m/inbox', body: document)