Webhooks and Incremental Updates
Gaazeon’s Blog is a static technical blog. It does not provide webhooks, event subscriptions, callback registration, or write APIs.
Why Webhooks Are Not Available
The site has no user accounts, app installs, private resources, or event stream. Public content is published through static HTML, Markdown, RSS, sitemap files, and read-only JSON indexes, so there is no server-side state that requires third-party webhook registration.
Recommended Alternatives
- Chinese RSS: rss.xml
- English RSS: rss.en.xml
- Sitemap index: sitemap-index.xml
- All posts JSON:
/api/posts.json - All tags JSON:
/api/tags.json - Markdown index: index.md
- Full LLM context: llms-full.txt
Agent Guidance
- Use RSS feeds for new post discovery.
- Use the sitemap to verify canonical URLs.
- Use
/api/posts.jsonand/api/tags.jsonfor structured indexes. - Respect HTTP caching and avoid repeated broad crawls.
- Do not attempt webhook creation, event subscription, or content mutation.
Error Semantics
Requests for nonexistent webhook or mutation paths should be treated as unsupported workflows. Fall back to RSS, sitemap, and public JSON indexes instead of probing private APIs.