Хочу отправить форму в телеграм прямо из js файла. Во всем этом новичок.
const TOKEN = token;
const CHAT_ID = id;
function sendMsg() {
var url = 'https://api.telegram.org/bot' + TOKEN + '/sendMessage';
var body = JSON.stringify({
chat_id: CHAT_ID,
parse_mode: 'Markdown',
text: "Сообщение"
});
var xhr = new XMLHttpRequest();
xhr.open('POST', url, true);
xhr.setRequestHeader('Content-type', 'application/json; charset=utf-8'); //
xhr.send(body);
}
Получаю net::ERR_CONNECTION_TIMED_OUT
В чем может быть проблема?