檢視 ActivityPub 的原始碼
←
ActivityPub
跳至導覽
跳至搜尋
由於下列原因,您沒有權限進行編輯此頁面的動作:
您請求的操作只有這個群組的使用者能使用:
使用者
您可以檢視並複製此頁面的原始碼。
{{Nav|程式語言、邏輯學}} ==概述== * 這是 Mastodon 等聯邦式社交網路的傳訊協定,構成 Fediverse。 * 類似 email 的傳輸協定。 * 傳輸使用 JSON。 * 要支援 Mastodon,需要使用 HTTP Signature。參見[https://github.com/mastodon/mastodon/issues/4963 Message digest on http signatures check #4963] ==在 Python 支援 HTTP Signature 的程式碼(未整理與加註解)== <pre> from cryptography.hazmat.backends import default_backend as crypto_default_backend from cryptography.hazmat.primitives import serialization as crypto_serialization from cryptography.hazmat.primitives import hashes from cryptography.hazmat.primitives.asymmetric import padding from urllib.parse import urlparse import base64 import datetime import requests import json import hashlib target_id = "https://dest.instance.social/users/peter" recipient_url = target_id recipient_inbox = target_id + "/inbox" sender_url = "https://example.net/users/john" sender_key = "https://example.net/users/john#main-key" activity_id = "https://example.net/users/john/follows/test" # The following is to sign the HTTP request as defined in HTTP Signatures. private_key_text = open('./lianlok/private.pem', 'rb').read() # load from file private_key = crypto_serialization.load_pem_private_key( private_key_text, password=None, backend=crypto_default_backend() ) current_date = datetime.datetime.utcnow().strftime('%a, %d %b %Y %H:%M:%S GMT') recipient_parsed = urlparse(recipient_inbox) recipient_host = recipient_parsed.netloc recipient_path = recipient_parsed.path # Now that the header is set up, we will construct the message follow_request_message = { "@context": "https://www.w3.org/ns/activitystreams", "id": "https://example.net/users/john", "type": "Follow", "actor": sender_url, "object": recipient_url } # generating digest request_message_json = json.dumps(follow_request_message) digest = base64.b64encode(hashlib.sha256(request_message_json.__str__().encode('utf-8')).digest()) signature_text = b'(request-target): post %s\ndigest: SHA-256=%s\nhost: %s\ndate: %s' % (recipient_path.encode('utf-8'), digest, recipient_host.encode('utf-8'), current_date.encode('utf-8')) raw_signature = private_key.sign( signature_text, padding.PKCS1v15(), hashes.SHA256() ) signature_header = 'keyId="%s",algorithm="rsa-sha256",headers="(request-target) digest host date",signature="%s"' % (sender_key, base64.b64encode(raw_signature).decode('utf-8')) headers = { 'Date': current_date, 'Content-Type': 'application/activity+json', 'Host': recipient_host, 'Digest': "SHA-256="+digest.decode('utf-8'), 'Signature': signature_header } r = requests.post(recipient_inbox, headers=headers, json=follow_request_message) </pre> [[category:資訊]]
此頁面使用了以下模板:
模板:Nav
(
檢視原始碼
)
返回到「
ActivityPub
」。
導覽選單
個人工具
登入
命名空間
頁面
討論
變體
視圖
閱讀
檢視原始碼
檢視歷史
更多
搜尋
導覽
首頁
愛爾蘭語辭典
近期變更
隨機頁面
有關 MediaWiki 的說明
相關網站
總首頁
Blog
舊 blog
現用 blog 備份
工具
連結至此的頁面
相關變更
特殊頁面
頁面資訊