https://github.com/thundernet8/telegram-proxy
转发telegram请求
https://github.com/thundernet8/telegram-proxy
golang telegram
Last synced: 4 days ago
JSON representation
转发telegram请求
- Host: GitHub
- URL: https://github.com/thundernet8/telegram-proxy
- Owner: thundernet8
- Created: 2020-07-03T09:47:52.000Z (almost 6 years ago)
- Default Branch: master
- Last Pushed: 2020-07-28T16:28:29.000Z (almost 6 years ago)
- Last Synced: 2024-04-14T23:52:21.524Z (about 2 years ago)
- Topics: golang, telegram
- Language: Go
- Homepage:
- Size: 3.8 MB
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
## telegram-proxy
转发telegram请求,解决TG通知无法发送的问题
示例
```bash
curl --location --request POST 'https:///:/sendMessage' \
--header 'Content-Type: application/json' \
--data-raw '{
"chat_id": ,
"text": "hello"
}'
```
## 其他
### 构建 Image
```bash
docker build -t polywoo/telegram-proxy:v1 .
```
### 上传 Image
```bash
docker login
docker push polywoo/telegram-proxy:v1
```
### K8S部署
```bash
kubectl apply -f app.yaml
```