I have some PHP
code to sending message to Telegram_bot
:
$telegrambot = "xxxxxxx";
$website="https://api.telegram.org/bot".$telegrambot;
$chatId=yyyyyyy;
$params=array('chat_id'=>$chatId,'text'=>$msg,);
$ch = curl_init($website . '/sendMessage');
curl_setopt($ch, CURLOPT_HEADER, false);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
curl_setopt($ch, CURLOPT_POST, 1);
curl_setopt($ch, CURLOPT_POSTFIELDS, ($params));
curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, false);
$result = curl_exec($ch);
curl_close($ch);
I used curl
because using file_get_contents()
or fopen()
causes connection refused
error. But still it doesn't work. How should I fix it?