1 SendLocation
dax edited this page 2019-05-22 10:49:44 +02:00

SendLocation($destination, $lat, $long)

<?php
#
# include class 
#
require('Telegram.class.php');

#
# instance
#
$bot = new TelegramBot('mytoken');

#
# Chat action method
#
$bot->SendLocation('DestinationMsgId', '43.890100441763764', '8.040899920866764');


?>