如何使用 bot 将消息表单通道转发给另一个用户?

how to forward a message form channel to another user with bot?

我试过为自己转发机器人收到的消息。 我的代码适用于某些频道,但不适用于其他频道。

电报中的频道不同吗?!!

我的代码:

$frmmsgid= $update["message"]["forward_from_message_id"];
$frmcht= $update["message"]["forward_from_chat"]["id"];
forward($myId,$frmcht,urlencode($frmmsgid));
function forward($to, $from, $mes)
{
    $url = $GLOBALS['webSite'] . "/forwardMessage?chat_id=" . $to . "&from_chat_id=" . $from . "&message_id=" . $mes;
    $result = file_get_contents($url);
 }

91DarioDev 所述,机器人无法从他们不是管理员的频道转发消息(机器人不能成为频道成员,只能是管理员)。