我正在使用这个库QtTelegramBot,并且我的Qt应用程序可以与Official Telegram应用程序和cel电话bot之间收发消息。
当我使用以下代码从php发送消息时:
<?php
$bottoken='here is my telegram token';
$request_params=[
"chat_id" => "my id telegram",
"text" => "my message",
];
$request_url="https://api.telegram.org/bot". $bottoken . '/sendMessage?' .http_build_query($request_params);
file_get_contents($request_url);
echo "sent";
?>
此代码将消息正确发送到了官方桌面电报客户端和我的手机。但是我使用QtTelegrambot库的Qt应用程序没有收到任何东西。
答案 0 :(得分:0)
我更好地理解了这个问题。...使用php发送消息,bot是发送者,用户是接收者。...我的Qt应用无法接收他自己的消息。