Skip to content

colindev/php-telegram-connection

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

24 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

rde/php-telegram-connection

簡化 telegram api 請求


用法

建立連線

use Rde\Telegram\Connection;

// 成功建立連線後, $conn->me 會存放此 bot 的 id 資料
$conn = new Connection($token);

發送訊息

use Rde\Telegram\Structure;

$payload = new Structure(array(
    'chat_id' => $int
));

$payload->{'text'} = 'some text string';

$telegram_response = $conn->sendMessage($payload);

使用 post

$conn->method('POST');
//$conn->sendMessage($payload);

cli tool

bot api 轉發

$ ./bot <token|bot_name> <method> [payload]

使用 post

$ METHOD=POST ./bot <token|bot_name> <method> [payload]

發送訊息

$ ./send <token|bot_name> <chat_id> 'your text'