This commit is contained in:
Aleksanov, Yuriy 2025-03-06 12:05:17 +03:00
parent 54da7e13b9
commit 070d2d19c3
1 changed files with 6 additions and 11 deletions

View File

@ -11,10 +11,6 @@ string bot_token;
int my_msg(const string& msg) { int my_msg(const string& msg) {
cout << msg << endl; cout << msg << endl;
if (bot_token.empty() || telegram_id.empty()) {
return 0;
}
CURL* curl = curl_easy_init(); CURL* curl = curl_easy_init();
if (!curl) return 6; if (!curl) return 6;
@ -52,12 +48,11 @@ int my_msg(const string& msg) {
if (res != CURLE_OK) return 5; if (res != CURLE_OK) return 5;
switch (http_code) { switch (http_code) {
case 200: return 0; case 200: return 0; // Успех
case 401: return 1; case 401: return 1; // Неверный токен
case 400: return 2; case 400: return 2; // Неверный chat_id
case 404: return 3; case 404: return 3; // Неверный URL (бот не найден)
default: default:
if (http_code >= 500) return 4; return 4; // Ошибка сервера (500)
return 4;
} }
} }