PHP Webhook/API for telegram.
You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
Frank Bischof f1739d55c3 Innitial commit 2 weeks ago
README.md Innitial commit 2 weeks ago
telegram_webhook.php Innitial commit 2 weeks ago

README.md

telegram-php-webhook

PHP Webhook for telegram bots

Install

Create a bot using the botfather (https://core.telegram.org/bots/tutorial) Set the bot webhook using setWebhook.

Ea:

curl -F "url=https://<DOMAIN.TLD>/<YOUR_WEBHOOK_PHP>" https://api.telegram.org/bot<BOT_ID>/setWebhook

Afterwards check if the webhook info is set properly on https://api.telegram.org/bot<BOT_ID>/getWebhookInfo

Setup

Only thing to set is the BOT ID in the code.

$TELEGRAM_BOT =  '15560000000:AAFoWcuFvqXXXXXXXXXXXXXXXXXXXXX';

Usage

You can use the following commands as an example: /ping /time /chatid /picture

You can easily add more in the case statement in the code.