Auto-sync: 2026-04-27 20:02

This commit is contained in:
2026-04-27 20:02:52 +08:00
parent 5854781fa8
commit de7ebe9256
59 changed files with 2122 additions and 1325 deletions

View File

@@ -0,0 +1,37 @@
---
title: "Account-Monitoring"
type: concept
tags: ["monitoring", "social-media", "automation", "notification", "twitter"]
last_updated: 2026-04-27
---
## Overview
Account-Monitoring 是指持续追踪指定 X/Twitter 账号的内容发布或粉丝变动并触发通知的自动化技术。
## Definition
通过 API 定期轮询或订阅目标账号的最新动态(推文发布、转发、粉丝变化等),当检测到变化时自动向用户发送通知。
## Key Characteristics
- **持续追踪**:不间断监控目标账号状态变化
- **多维度监控**
- 新推文/转发发布
- 粉丝数量变化
- 关注/取消关注操作
- **主动通知**:检测到变化时自动推送通知,无需用户主动查询
- **可配置阈值**:可设置仅在特定条件触发时通知(如粉丝数突破阈值)
## Implementation
在 [[x-twitter-automation]] 中,通过 [[TweetClaw]] 的 Monitors 功能实现:
1. 配置监控目标账号列表
2. 定期通过 API 获取账号最新状态
3. 与上次状态对比,检测变化
4. 变化发生时自动向用户发送通知
## Related Use Cases
- [[x-twitter-automation]] — TweetClaw 提供账号监控功能
## Sources
- [[x-twitter-automation]]
## Connections
- [[X/Twitter-API-Automation]] ← powers ← [[Account-Monitoring]](监控功能依赖 API 获取账号动态)