import { type ApiClientOptions } from "https://dotland.deno.dev/x/grammy@v1.12.4/mod.ts";
Options to pass to the API client that eventually connects to the Telegram Bot API server and makes the HTTP requests.
Properties
Maximum number of seconds that a request to the Bot API server may take. If a request has not completed before this time has elapsed, grammY aborts the request and errors. Without such a timeout, networking issues may cause your bot to leave open a connection indefinitely, which may effectively make your bot freeze.
You probably do not have to care about this option. In rare cases, you may want to adjust it if you are transferring large files via slow connections to your own Bot API server.
The default number of seconds is 500
, which corresponds to 8 minutes
and 20 seconds. Note that this is also the value that is hard-coded in
the official Bot API server, so you cannot perform any successful
requests that exceed this time frame (even if you would allow it in
grammY). Setting this option to higher than the default only makes sense
with a custom Bot API server.
If the bot is running on webhooks, as soon as the bot receives an update from Telegram, it is possible to make up to one API call in the response to the webhook request. As a benefit, this saves your bot from making up to one HTTP request per update. However, there are a number of drawbacks to using this:
- You will not be able to handle potential errors of the respective API call. This includes rate limiting errors, so sent messages can be swallowed by the Bot API server and there is no way to detect if a message was actually sent or not.
- More importantly, you also won't have access to the response object,
so e.g. calling
sendMessage
will not give you access to the message you sent. - Furthermore, it is not possible to cancel the request. The
AbortSignal
will be disregarded. - Note also that the types in grammY do not reflect the consequences of a performed webhook callback! For instance, they indicate that you always receive a response object, so it is your own responsibility to make sure you're not screwing up while using this minor performance optimization.
With this warning out of the way, here is what you can do with the
canUseWebhookReply
option: it can be used to pass a function that
determines whether to use webhook reply for the given method. It will
only be invoked if the payload can be sent as JSON. It will not be
invoked again for a given update after it returned true
, indicating
that the API call should be performed as a webhook send. In other words,
subsequent API calls (during the same update) will always perform their
own HTTP requests.
Base configuration for fetch
calls. Specify any additional parameters
to use when fetching a method of the Telegram Bot API. Default: { compress: true }
(Node), {}
(Deno)
When the network connection is unreliable and some API requests fail because of that, grammY will throw errors that tell you exactly which requests failed. However, the error messages do not disclose the fetched URL as it contains your bot's token. Logging it may lead to token leaks.
If you are sure that no logs are ever posted in Telegram chats, GitHub
issues, or otherwise shared, you can set this option to true
in order
to obtain more detailed logs that may help you debug your bot. The
default value is false
, meaning that the bot token is not logged.