我现在不介绍如何使用电报API在PHP中发送图像。我一直在许多网站上搜索,但没有成功。
这是我的代码:
<?php
$botToken="(the token)";
$website = "https://api.telegram.org/bot".$botToken;
$update = file_get_contents('php://input');
$update = json_decode($update, TRUE);
$chatId = $update["message"]["chat"]["id"];
$message = $update["message"]["text"];
switch($message){
case "/ezio":
sendMessage($chatId, "test");
}
function sendMessage($chatId, $message){
$url = $GLOBALS[website]."/sendMessage?chat_id=".$chatId."&text=".urlencode($message);
file_get_contents($url);
}
?>
我删除了附加的令牌。
如何使用电报api发送图像?