-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathProgram.cs
More file actions
56 lines (39 loc) · 1.39 KB
/
Program.cs
File metadata and controls
56 lines (39 loc) · 1.39 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
// Program.cs
//using Chatbot_Dev.Handlers;
using Telegram.Bot;
using TelegramBot.Handlers;
var builder = WebApplication.CreateBuilder(args);
// ⬅️ This line makes sure appsettings.json is read
builder.Configuration.AddJsonFile("appsettings.json", optional: false, reloadOnChange: true);
// Load bot token from config
var botToken = builder.Configuration["TelegramBotToken"];
var botClient = new TelegramBotClient(botToken);
var app = builder.Build();
app.MapGet("/", () => "Telegram Bot is running");
// Background polling service
var cancellationToken = new CancellationTokenSource();
_ = Task.Run(async () =>
{
var me = await botClient.GetMeAsync();
Console.WriteLine($"🤖 Bot {me.Username} is up!");
botClient.StartReceiving(
// async (client, update, token) => await TelegramUpdateHandler.HandleUpdateAsync(client, update),
// (client, exception, token) =>
// {
// Console.WriteLine($"❌ Error: {exception.Message}");
// return Task.CompletedTask;
// },
// cancellationToken: cancellationToken.Token);
//});
async (client, update, token) =>
{
await TelegramUpdateHandler.HandleUpdateAsync(client, update);
},
(client, exception, token) =>
{
Console.WriteLine($"❌ Error: {exception.Message}");
return Task.CompletedTask;
},
cancellationToken: cancellationToken.Token);
});
app.Run();