我有一些PHP
代码发送消息给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);
我使用curl
因为使用file_get_contents()
或fopen()
导致connection refused
错误。但它仍然无效。我该如何解决?
有许多Bot代码示例可用于PHP Telegram API集成。
请检查一下。
机器人代码示例:https://core.telegram.org/bots/samples
这是一个用PHP编写的简单hello bot。