DynuIPRefresher/src/api/TelegramAPI.cpp

11 lines
296 B
C++
Raw Normal View History

//
// Created by lukas on 08.05.19.
//
#include "TelegramAPI.h"
void TelegramAPI::sendMessage(std::string text) {
2019-05-08 19:31:49 +02:00
std::string reply = request("https://api.telegram.org/bot" + apikey + "/sendmessage?chat_id=" + chatid + "&text=" + text);
std::cout << "[DEBUG] " << reply << std::endl;
}