1
SendChatAction
dax edited this page 2019-05-22 10:48:54 +02:00
SendChatAction($destination, $action)
- typing
- upload_photo
- record_audio
- upload_document
- find_location
- record_video_note
<?php
#
# include class
#
require('Telegram.class.php');
#
# instance
#
$bot = new TelegramBot('mytoken');
#
# Chat action method
#
$bot->SendChatAction('DestinationMsgId', 'typing');
?>