my_msg #3
17
my_msg.cpp
17
my_msg.cpp
|
@ -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();
|
||||||
serafim marked this conversation as resolved
|
|||||||
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 (бот не найден)
|
||||||
serafim marked this conversation as resolved
Outdated
serafim
commented
Коментик бы со знаниямт статус кодов Коментик бы со знаниямт статус кодов
|
|||||||
default:
|
default:
|
||||||
if (http_code >= 500) return 4;
|
return 4; // Ошибка сервера (500)
|
||||||
return 4;
|
|
||||||
}
|
}
|
||||||
}
|
}
|
Loading…
Reference in New Issue
Это условие гарантируется, ещё 0 обычно используется как признак успешного выполнения