telegram_php_webhook/README.md

28 lines
677 B
Markdown

# 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.