承接 usermp/telebot 相关项目开发

从需求分析到上线部署,全程专人跟进,保证项目质量与交付效率

邮箱:yvsm@zunyunkeji.com | QQ:316430983 | 微信:yvsm316

usermp/telebot

最新稳定版本:v1.0.0

Composer 安装命令:

composer require usermp/telebot

包简介

A simple package for telegram api

README 文档

README

Telebot is a PHP library for interacting with the Telegram Bot API. It provides methods to perform various actions such as sending messages, photos, videos, documents, etc., and also handling webhooks and getting updates from Telegram.

Installation

You can install Telebot via Composer. Run the following command in your terminal:

bashCopy code

composer require usermp/telebot

Usage

First, you need to create an instance of the Telebot class by providing your Telegram Bot token:

use Telebot\Telebot;
$token = 'YOUR_TELEGRAM_BOT_TOKEN';
$telebot = new Telebot($token);

Setting Webhook

You can set up a webhook URL for your bot to receive updates. Use the setWebhook method:

$webhookUrl = 'YOUR_WEBHOOK_URL'; 
$response   = $telebot->setWebhook($webhookUrl);

Sending Messages

You can send messages to a chat using the sendMessage method:

$chatId   = 'CHAT_ID'; 
$text     = 'Hello, world!'; 
$response = $telebot->sendMessage($chatId, $text);

Handling Updates

You can get updates from Telegram using the getUpdates method:

$updates = $telebot->getUpdates();

Other Actions

Telebot provides various methods for different actions such as sending photos, audio, documents, videos, locations, contacts, etc. Refer to the source code or documentation for the complete list of available methods.

Contributing

Contributions are welcome! Feel free to open issues or pull requests.

统计信息

  • 总下载量: 16
  • 月度下载量: 0
  • 日度下载量: 0
  • 收藏数: 2
  • 点击次数: 3
  • 依赖项目数: 0
  • 推荐数: 0

GitHub 信息

  • Stars: 2
  • Watchers: 1
  • Forks: 0
  • 开发语言: PHP

其他信息

  • 授权协议: MIT
  • 更新时间: 2024-03-18