HTTP interactions or a Gateway bot?
- HTTP Interactions Endpoint for slash commands and component interactions
- Gateway connection for continuous event streams and privileged intents
Choose: Use the HTTP endpoint for a focused slash-command bot. Add a Gateway worker only when the feature genuinely needs continuous events that interactions do not provide.
Tradeoff: HTTP interactions need public HTTPS, exact signature verification, and response deadlines but no long-lived connection. Gateway adds reconnects, session state, intents, permissions, and more operational surface.
