grammyjs / auto-retry

A transformer function for retrying requests.
https://grammy.dev/plugins/auto-retry
MIT License
7 stars 1 forks source link

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.