Notion + pushplus:数据库更新推到微信
效果:Notion 自动化或 Make 类 HTTP 步骤在页面新增/变更后,向 pushplus 发一条通知。
前置条件
- 一个 pushplus token(官网扫码获取)
- 能改该数据库自动化,或已有 Make / Zapier / Pipedream 账号
配置步骤
方式一:Notion 自动化 Webhook(固定文案)
数据库 → ⋯ → Automations,触发器选「页面添加 / 属性变更」。动作若只能填一个 Webhook URL:
https://www.pushplus.plus/send?token=你的token&title=Notion有更新&content=请打开Notion查看对应页面
Notion 推过来的 JSON 不会自动映射为正文。
方式二:Make / Zapier / Pipedream HTTP(动态正文)
- 触发器选 Notion「New / Updated Database Item」。
- 下一步用 HTTP:
- URL:
https://www.pushplus.plus/send - Method:
POST - Content-Type:
application/json - Body:
- URL:
{
"token": "你的token",
"title": "Notion 更新",
"content": "{{页面标题}} {{状态}}",
"template": "txt"
}
把占位符换成该平台映射的 Notion 属性。token 放私有变量,不要写进可分享的模板。
验证
curl -X POST "https://www.pushplus.plus/send" \
-H "Content-Type: application/json" \
-d '{"token":"你的token","title":"Notion 配置测试","content":"token 可用","template":"markdown"}'
再在数据库新增一条测试记录。
常见问题
自动化触发了但正文永远那句? 直连 Webhook 就是固定文案。要属性值请走方式二。
改一条推一次太吵? 用「特定属性变为某值」作条件,例如状态改成「完成」才推。