#
Pythonを使ったAPIの使い方
詳しいAPIドキュメントは公式インスタンスである AkariNe や OrangeKr をご参照ください。
#
ノートの投稿
requests
パッケージを使用してayuskeyにWelcome to Ayuskey
とノートを投稿してみましょう。
i
変数にはご自分のアクセストークンを入れてください。
import requests
import json
i = 'my token'
data = json.dumps({'i': i, 'text': 'Welcome to Ayuskey'}, ensure_ascii=false)
res = requests.post('http://localhost:3300/api/notes/create', data=data)
print(res.json())
>>> response内容
#
リプライ
requests
パッケージを使用して、note_id
変数にあるidを元にノートにリプライで'Welcome to Ayuskey'と送りましょう。
import requests
import json
i = 'my token'
note_id = 'xxxxxxxx'
data = json.dumps({'i': i, 'text': 'Welcome to Ayuskey', 'replyId': note_id}, ensure_ascii=false)
res = requests.post('http://localhost:3300/api/notes/create')
print(res.json())
>>> response内容