使用Telegram api发送消息

问题描述 投票:-2回答:2

我有一些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错误。但它仍然无效。我该如何解决?

php telegram telegram-bot php-curl php-telegram-bot
2个回答
0
投票

有许多Bot代码示例可用于PHP Telegram API集成。

请检查一下。

机器人代码示例:https://core.telegram.org/bots/samples


0
投票

这是一个用PHP编写的简单hello bot。

https://core.telegram.org/bots/samples/hellobot

© www.soinside.com 2019 - 2024. All rights reserved.