v1
This commit is contained in:
13
set_web_hook.php
Executable file
13
set_web_hook.php
Executable file
@@ -0,0 +1,13 @@
|
||||
<?php
|
||||
require __DIR__ . '/vendor/autoload.php';
|
||||
require __DIR__ . '/env.php';
|
||||
|
||||
try {
|
||||
$telegram = new Longman\TelegramBot\Telegram($bot_api_key, $bot_username);
|
||||
$result = $telegram->setWebhook($hook_url);
|
||||
if ($result->isOk()) {
|
||||
echo $result->getDescription();
|
||||
}
|
||||
} catch (Longman\TelegramBot\Exception\TelegramException $e) {
|
||||
echo $e->getMessage();
|
||||
}
|
||||
Reference in New Issue
Block a user