0

Message is sending but the bot is not editing the message, what's wrong here ?

here's my code :-

if($text == "/hi"){
bot('sendChatAction',[
'chat_id'=>$chat_id,
'action'=>"typing",
]);
bot('sendMessage',[
'chat_id'=>$chat_id,
'text'=>"wait",
'reply_to_message_id'=>$message->message_id,
]);
bot('editMessageText',[
'chat_id'=>$chat_id,
'text'=>"hello",
'reply_to_message_id'=>$message->message_id,
]);
}

any help would be appreciated :)

The Beast
  • 3
  • 2

1 Answers1

0

Checkout editMessageText in Telegram Bot API documentations.

You need to pass message_id or inline_message_id to specify which message you want to edit.

Ali Padida
  • 1,763
  • 1
  • 16
  • 34