如何使用电报API将图像发送到群组?

时间:2019-07-15 22:08:07

标签: php html api bots telegram

我现在不介绍如何使用电报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发送图像?

0 个答案:

没有答案