电报机器人发送消息
Telegram bot Send message
我正在使用 irazasyed.github.io Telegram SDK 发送消息
这是我的代码,当我向机器人发送消息时没有任何反应并且没有收到回复
问题出在哪里 ?
MY_BOT_TOKEN被替换
<?php
require 'vendor/autoload.php';
use Telegram\Bot\Api;
$telegram = new Api('MY_BOT_TOKEN');
$update = json_decode( file_get_contents( 'php://input' ) );
$chat_id = $update->getMessage()->getChat()->getId();
$response = $telegram->sendMessage([
'chat_id' => $chat_id;
'text' => 'Hello World'
]);
$response->getMessageId();
?>
需要做一些改变:
$update = json_decode( file_get_contents( 'php://input' ) , true);
$chat_id = $update->getMessage->getChat->getId();
我正在使用 irazasyed.github.io Telegram SDK 发送消息 这是我的代码,当我向机器人发送消息时没有任何反应并且没有收到回复 问题出在哪里 ?
MY_BOT_TOKEN被替换
<?php
require 'vendor/autoload.php';
use Telegram\Bot\Api;
$telegram = new Api('MY_BOT_TOKEN');
$update = json_decode( file_get_contents( 'php://input' ) );
$chat_id = $update->getMessage()->getChat()->getId();
$response = $telegram->sendMessage([
'chat_id' => $chat_id;
'text' => 'Hello World'
]);
$response->getMessageId();
?>
需要做一些改变:
$update = json_decode( file_get_contents( 'php://input' ) , true);
$chat_id = $update->getMessage->getChat->getId();