@grammyjs/auto-retry
v2.0.2
Published
grammY API transformer function to retry requests
Downloads
11,600
Maintainers
Readme
Automatically Retry grammY API Requests
Check out the official documentation for this grammY plugin. You might also want to read about broadcasting messages.
Quickstart
An API transformer function lets you modify outgoing HTTP requests on the fly.
This grammY plugin can automatically detect if an API requests fails with a retry_after
value.
It will then intercept the error, wait the specified period of time, and then retry the request.
import { autoRetry } from "@grammyjs/auto-retry";
// Install the plugin
bot.api.config.use(autoRetry());
You can also pass an options object to configure this plugin. Check out the docs to read on.