File size: 492 Bytes
9a8cc27
 
 
bd59e2c
9a8cc27
 
bd59e2c
9a8cc27
 
bd59e2c
1
2
3
4
5
6
7
8
9
10
11
import requests
from app.config import settings

# MVPではZapier/IFTTTなどWebhookにMarkdownを渡す方式を採用
def post_to_note(title: str, body_md: str):
    if not settings.NOTE_WEBHOOK_URL:
        # Webhook未設定の場合はスキップ
        return {"status": "skipped", "reason": "NOTE_WEBHOOK_URL not set"}
    resp = requests.post(settings.NOTE_WEBHOOK_URL, json={"title": title, "content_md": body_md})
    return {"status": resp.status_code, "resp": resp.text[:200]}