leealex/telegram-sdk
Composer 安装命令:
composer require leealex/telegram-sdk
包简介
Telegram Bot SDK
README 文档
README
About
Telegram Bot API SDK lets you develop Telegram Bots in PHP.
It offers interactions with user by generating inline or custom keyboards.
Please refer to the official documentation https://core.telegram.org/bots/api
Installation
The recommended way to install SDK is through Composer.
composer require leealex/telegram-sdk
Usage
// Pass your bot's token to the Bot's constructor $bot = new leealex\telegram\Bot(BOT_TOKEN); // Optional. Directory path to store DB files at. Default value: sys_get_temp_dir() $bot->setDb(DB_DIR_PATH); // Optional. Array of admins IDs $bot->setAdmins([123456789]); // Required. Directory path to store all bot's commands $bot->setCommandsPath(COMMANDS_DIR_PATH); // Optional. Aliases are primarily used for reply keyboards, which, unlike inline keyboards, // cannot pass callback queries. Reply keyboard passes the text of the button itself, // which may contain emoji. $bot->setCommandsAliases([ 'Button 1️⃣ 🙂' => 'SomeCommand argument1 argument2', 'Button 2️⃣ 👍' => 'AnotherCommand argument1', ]); $bot->run();
Data storage
SDK uses lightweight NoSQL database SleekDB to store data.
Bot instance holds SleekDB object to interact with database. Use getDb() method to get SleekDB instance.
// Get DB $db = $bot->getDb(); // Fetch data $user = $db->findBy(['user_id', '=', 123]); // Fetch data with query builder $users = $db->createQueryBuilder() ->where(['type', '=', 'user']) ->orderBy(['age' => 'desc']) ->limit(10) ->getQuery() ->fetch(); // Insert data $db->insert([ 'type' => 'user', 'user_id' => 123, 'username' => 'John', 'age' => 18 ]); // Update data $db->createQueryBuilder() ->where(['user_id', '=', 123]) ->getQuery() ->update(['age' => 20]);
See full documentation at https://sleekdb.github.io
leealex/telegram-sdk 适用场景与选型建议
leealex/telegram-sdk 是一款 基于 PHP 开发的 Composer 扩展包,目前已累计 107 次下载、GitHub Stars 达 3, 最近一次更新时间为 2021 年 01 月 06 日, 在 PHP 生态内属于活跃度较高的组件。
我们在过去多个企业项目中使用过 leealex/telegram-sdk 或与其功能相近的方案,如果你在选型或落地过程中遇到问题,例如 版本兼容、二次改造、私有化封装、与内部系统对接、生产 BUG 排查,欢迎联系我们协助评估。
基于 leealex/telegram-sdk 在你已有业务上做功能扩展、字段裁剪、UI 适配、与内部账号 / 权限 / 日志系统的深度对接。
线上偶发问题、内存泄漏、慢查询、并发异常等排查修复;针对高流量场景做缓存、队列、索引层面的调优。
承接完整的项目从需求 → 设计 → 开发 → 上线 → 长期运维;也可按月提供技术保姆服务。
统计信息
- 总下载量: 107
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 3
- 点击次数: 3
- 依赖项目数: 1
- 推荐数: 0
其他信息
- 授权协议: MIT
- 更新时间: 2021-01-06
