borsaco/telegram-bot-api-bundle
Composer 安装命令:
composer require borsaco/telegram-bot-api-bundle
包简介
A simple wrapper for telegram-bot-api.
README 文档
README
A symfony wrapper bundle for Telegram Bot API.
Install
Via Composer
composer require borsaco/telegram-bot-api-bundle
Configure the bundle
This bundle was designed to just work out of the box. The only thing you have to configure in order to get this bundle up and running is your bot token.
# config/packages/telegram.yaml telegram_bot_api: # Proxy (optional) : #proxy: 'socks5h://127.0.0.1:5090' # this is example you have to change this #async_requests: false # Development section: development: # implement in next version # Telegram user_id of developers accounts developers_id: [1234567, 87654321] # If this mode is enabled, the robot only responds to the developers maintenance: text: "The robot is being repaired! Please come back later." # Bots: bots: # The bot name first: # Your bot token: (required) token: 123456789:ABCD1234****4321CBA maintenance: false second: # Your bot token: (required) token: 123456789:ABCD1234****4321CBA maintenance: false # The default bot returned when you call getBot() default: 'second'
Usage
You can access the bot in the controller with :
use Borsaco\TelegramBotApiBundle\Service\Bot; ... public function index(Bot $bot) { $firstBot = $bot->getBot('first'); $firstBot->getMe(); }
Webhook
In order to receive updates via a Webhook, You first need to tell your webhook URL to Telegram. You can use setWebhook method to specify a url and receive incoming updates via an outgoing webhook or use this commands:.
for get information about webhook of bot:
$ php bin/console telegram:bot:webhook:info
for set webhook url for the bot:
$ php bin/console telegram:bot:webhook:set
for delete webhook of the bot:
$ php bin/console telegram:bot:webhook:delete
Once you set the webhook using the setWebhook method, You can then use the below function to retrieve the updates that are sent to your Webhook URL. The function returns an array of Update objects.
$updateArray = $firstBot()->getWebhookUpdate();
Maintenance
If want to use maintenance of bots you can check $bot->isMaintenance('bot_name') in your entry point controller and send response message.
Next...
Please refer to Telegram Bot API Official Document for getting information about available methods and other informations.
Troubleshooting
If you did all the configurations correctly but still getting errors (Http error 500) even on getMe() method, it might be because of SSL Verification. Please make sure you have up-to-date CA root certificate bundle to be used with cURL.
You can configure you CA root certificate bundle by:
- Downloading up-to-date cacert.pem file from cURL website and
- Setting a path to it in your php.ini file, e.g. on Windows:
curl.cainfo=c:\php\cacert.pem
You can test your SSL-setup online with this handy webtool on: SSL Labs
License
The BSD License. Please see License File for more information.
borsaco/telegram-bot-api-bundle 适用场景与选型建议
borsaco/telegram-bot-api-bundle 是一款 基于 PHP 开发的 Composer 扩展包,目前已累计 33.51k 次下载、GitHub Stars 达 56, 最近一次更新时间为 2019 年 07 月 08 日, 在 PHP 生态内属于活跃度较高的组件。
它主要适用于以下技术方向: 「symfony」 「php」 「api」 「bot」 「telegram」 「Telegram-Bot-API」 等业务场景。在实际项目中,围绕这些方向常见需要落地的问题包括:接口对接、性能调优、并发安全、与既有框架(Laravel / ThinkPHP / Yii / Webman 等)的兼容适配,以及生产环境的日志埋点与稳定性保障。
我们在过去多个企业项目中使用过 borsaco/telegram-bot-api-bundle 或与其功能相近的方案,如果你在选型或落地过程中遇到问题,例如 版本兼容、二次改造、私有化封装、与内部系统对接、生产 BUG 排查,欢迎联系我们协助评估。
基于 borsaco/telegram-bot-api-bundle 在你已有业务上做功能扩展、字段裁剪、UI 适配、与内部账号 / 权限 / 日志系统的深度对接。
线上偶发问题、内存泄漏、慢查询、并发异常等排查修复;针对高流量场景做缓存、队列、索引层面的调优。
承接完整的项目从需求 → 设计 → 开发 → 上线 → 长期运维;也可按月提供技术保姆服务。
与 borsaco/telegram-bot-api-bundle 相关的其它包
同方向 / 同关键字的高下载量 PHP Composer 包推荐,方便对比选型:
The bundle for easy using json-rpc api on your project
A PSR-7 compatible library for making CRUD API endpoints
Bundle Symfony DaplosBundle
Alfabank REST API integration
Biblioteca PHP pura para pagamentos SISP/Vinti4 de Cabo Verde.
Zero-dependency raw PHP DNS resolver, domain-ownership verification, and intoDNS/MxToolbox-style diagnostics. Queries authoritative nameservers directly over sockets — never trusts the recursive cache for ownership checks.
统计信息
- 总下载量: 33.51k
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 56
- 点击次数: 6
- 依赖项目数: 0
- 推荐数: 0
其他信息
- 授权协议: BSD-3-Clause
- 更新时间: 2019-07-08