Use These Docs For New Development
- Bot lifecycle overview:
- Full API definitions (request fields, value domains, success/error responses):
- SDK integration:
Minimal Production Checklist
- Create bot via BotMother and complete bot settings (
API Key, domain, webhook if used).
- Choose one receive mode only: webhook or long polling (strictly mutually exclusive).
- Implement message send with
POST /openapi/bot/sendMessage using documented field constraints.
- Validate error handling against OpenAPI error examples before go-live.
Notes
- Do not use old
messages/* endpoints from historical examples.
- Keep secrets server-side (
API Key, API Secret, webhook validation key).