PHP proxy for Telegram Bot API

一个很小众的项目,但是很好用,通过这个项目可以使用PHP部署一个TGBot的代理API。可以实现和cf worker代码建立TGBot API同样的效果。
CF Workers代码-TGBot代理

部署前准备

  • PHP >= 5.6
  • SSL(必须)
  • 国外服务器(Apache or Nginx)/虚拟主机(Apache)

Demo(长期运营)

https://bot.qninq.cn/

部署过程

以宝塔面板为例,正常创建网站,PHP7.0,无需数据库,配置SSL证书,开启强制HTTPS,然后配置下方的伪静态规则。

Apache

AddDefaultCharset UTF-8

RewriteEngine On
RewriteRule ^bot.*$ tgproxy.php [L]

Nginx

# Set the default charset to UTF-8
charset utf-8;

# Rewrite rule
location ~ ^/bot {
    rewrite ^/bot.*$ /tgproxy.php last;
}

开源地址

源码下载

此处内容需要评论回复后(审核通过)方可阅读。

🏷本文标签:PHP,️tgbot,️api,️proxy
最后修改:2024 年 01 月 20 日
如果觉得我的文章对你有用,请随意赞赏