上传者: 42171132
|
上传时间: 2022-11-25 15:34:04
|
文件大小: 3KB
|
文件类型: ZIP
PHP-电报机器人API
用于Telegram-Bot-API的非官方PHP类
用法示例
require ( 'telegram-bot-api.php' );
$ token = 'YOUR BOT TOKEN' ;
$ bot = new telegram_bot( $ token );
设置webhook(您只需要运行一次此命令)
$ bot -> set_webhook ( 'http:/....' ); //Your url
对于未设置:
$ bot -> set_webhook ();
从webhook读取:
$ message = $ bot -> read_post_message (); //Returns a message object
从邮件收件箱中读取:
$ list_message = $ bot -> get_updates ();