Webhooks
With Webhook, your web application gets notified sequentially, automatically by Telegram when new updates arrive for your bot.
Your application will receive HTTP POST requests with an Update structure in the body, using specific JSON serialization settings Telegram.Bot.JsonBotAPI.Options
.
Below, you will find how to configure an ASP.NET Core Web API project to make it work with Telegram.Bot, either with Controllers or Minimal APIs
⚠️ IMPORTANT: This guide describes configuration for versions 21.* and later of the library (based on System.Text.Json rather than NewtonsoftJson). If you're using older versions, you should upgrade first!
ASP.NET Core with Controllers (MVC)
First you need to configure your Web App startup code:
- Locate the line
services.AddControllers();
(in Program.cs or Startup.cs) - If you're using .NET 6.0 or more recent, add the line:
services.ConfigureTelegramBotMvc();
- For older .NET versions, add the line:
services.ConfigureTelegramBot<Microsoft.AspNetCore.Mvc.JsonOptions>(opt => opt.JsonSerializerOptions);
Next, in a controller class (like BotController.cs), you need to add an action for the updates. Typically:
[HttpPost]
public async Task HandleUpdate([FromBody] Update update)
{
// put your code to handle one Update here.
}
Good, now skip to SetWebHook below
ASP.NET Core with Minimal APIs
First you need to configure your Web App startup code:
- Locate the line
builder.Build();
(in Program.cs) - Above it, insert the line:
builder.Services.ConfigureTelegramBot<Microsoft.AspNetCore.Http.Json.JsonOptions>(opt => opt.SerializerOptions);
Next, you need to map an action for the updates. Typically:
app.MapPost("/bot", (Update update) => HandleUpdate(update));
...
async Task HandleUpdate(Update update)
{
// put your code to handle one Update here.
}
Good, now skip to SetWebHook below
Old ASP.NET 4.x support
For older .NET Framework usage, you may use the following code:
public async Task<IHttpActionResult> Post()
{
Update update;
using (var body = await Request.Content.ReadAsStreamAsync())
update = System.Text.Json.JsonSerializer.Deserialize<Update>(body, JsonBotAPI.Options);
await HandleUpdate(update);
return Ok();
}
SetWebHook
Your update handler code is ready, now you need to instruct Telegram to send updates to your URL, by running:
var bot = new TelegramBotClient("YOUR_BOT_TOKEN");
await bot.SetWebhook("https://your.public.host:port/bot", allowedUpdates: []);
You can now deploy your app to your webapp host machine.
Note: If you decide to switch back to Long Polling, remember to call bot.DeleteWebhook()
Common issues
- You need a supported certificate
If your host doesn't provide one, or you want to develop on your own machine, consider using ngrok:
See this useful step-by-step guide - You must use HTTPS (TLS 1.2+), IPv4, and ports 443, 80, 88, or 8443
- The Official webhook guide gives a lot of details
- Most web hostings will recycle your app after some HTTP inactivity (= stop your app and restart it on the next HTTP request)
To prevent issues with this:- Search for an Always-On option with your host (usually not free)
- Make sure your web app can be safely stopped (saved state) and restarted later (reloading state)
- Make sure you don't have critical background code that needs to keep running at all time
- Have a service like cron-job.org ping your webapp every 5 minutes to keep it active. (host will likely still recycle your app after a few days)
- Host your app on a VPS machine rather than a webapp host.
Updates are posted sequentially to your webapp
If there are new pending updates, Telegram servers will send a POST request to your Webhook URL with the next sequential update you didn't acknowledge yet.
(We're talking about incremental update.Id
values here)
As long as your webapp doesn't acknowledge the update with a 200 OK within a few seconds, Telegram will keep sending the same update to your URL.
In particular, it will happen if your code is throwing an unhandled exception or taking too long to process an update.
You may want to prevent handling the same update.Id twice:
if (update.Id <= LastUpdateId) return;
LastUpdateId = update.Id;
// your code to handle the Update here.
Initially Telegram will resend the failed update quickly, then with increasing intervals up to a few minutes. So if your webapp wasn't working for some time, you may have to wait a bit to receive a POST request with the next update.
If you want to acknowledge the incoming updates quickly but process them asynchronously or in parallel, there are multiple possible approaches:
- write the received update into a Channel
You will need a separate consumer Task to process these updates (see Background Service) - do the same but with a
ConcurrentQueue
or aQueue
(withlock
) - spawn a new sub-Task for each update, using
Task.Run
for example
(if your bot is heavily used, make sure you don't overload your server with concurrent tasks)
If you're gonna process the updates in parallel, you might want to ensure your code:
- is thread-safe or async-safe when accessing common resources
- has no state-consistency issue processing updates in unsequential order