tgbotlib/tests/get_updates.php

14 lines
410 B
PHP
Raw Normal View History

2023-02-14 20:55:51 -05:00
<?php
require 'ncc';
import('net.nosial.tgbotlib');
2023-02-19 17:25:59 -05:00
require 'commands/StartCommand.php';
2023-02-20 16:06:11 -05:00
$bot = new TgBotLib\Bot('865804194:AAHTo9aIFP5X47dMYLJ6eoldHJnM6sc3LBc');
$bot->setCommandHandler('start', new \commands\StartCommand());
2023-02-19 17:25:59 -05:00
2023-02-20 16:06:11 -05:00
print_r(json_encode($bot->getMe()->toArray()) . PHP_EOL);
$bot->sendMessage(570787098, 'Hello, world!');
$bot->handleGetUpdates();
unset($bot);