Skip to main content

telegram-dev

Comprehensive guide for developing Telegram bots and mini apps, covering APIs, payment integration, and message handling.

Install this skill

or
29/100

Security score

The telegram-dev skill was audited on Feb 28, 2026 and we found 31 security issues across 2 threat categories. Review the findings below before installing.

Categories Tested

Security Issues

medium line 3

Webhook reference - potential data exfiltration

SourceSKILL.md
3description: Telegram 生态开发全栈指南 - 涵盖 Bot API、Mini Apps (Web Apps)、MTProto 客户端开发。包括消息处理、支付、内联模式、Webhook、认证、存储、传感器 API 等完整开发资源。
medium line 17

Webhook reference - potential data exfiltration

SourceSKILL.md
17- 实现 Webhook 和长轮询
medium line 93

Webhook reference - potential data exfiltration

SourceSKILL.md
93- `setWebhook` - 设置 Webhook
medium line 94

Webhook reference - potential data exfiltration

SourceSKILL.md
94- `deleteWebhook` - 删除 Webhook
medium line 95

Webhook reference - potential data exfiltration

SourceSKILL.md
95- `getWebhookInfo` - 查询 Webhook 状态
medium line 122

Webhook reference - potential data exfiltration

SourceSKILL.md
122### Webhook 配置
medium line 124

Webhook reference - potential data exfiltration

SourceSKILL.md
124**设置 Webhook:**
low line 129

Webhook reference - potential data exfiltration

SourceSKILL.md
129WEBHOOK_URL = "https://yourdomain.com/webhook"
low line 132

Webhook reference - potential data exfiltration

SourceSKILL.md
132f"https://api.telegram.org/bot{BOT_TOKEN}/setWebhook",
low line 133

Webhook reference - potential data exfiltration

SourceSKILL.md
133json={"url": WEBHOOK_URL}
medium line 137

Webhook reference - potential data exfiltration

SourceSKILL.md
137**Flask Webhook 示例:**
low line 145

Webhook reference - potential data exfiltration

SourceSKILL.md
145@app.route('/webhook', methods=['POST'])
low line 146

Webhook reference - potential data exfiltration

SourceSKILL.md
146def webhook():
medium line 164

Webhook reference - potential data exfiltration

SourceSKILL.md
164**Webhook 要求:**
medium line 658

Webhook reference - potential data exfiltration

SourceSKILL.md
6583. **使用 Webhook 而非长轮询**
low line 47

External URL reference

SourceSKILL.md
47https://api.telegram.org/bot<TOKEN>/METHOD_NAME
low line 61

External URL reference

SourceSKILL.md
61API_URL = f"https://api.telegram.org/bot{BOT_TOKEN}"
low line 129

External URL reference

SourceSKILL.md
129WEBHOOK_URL = "https://yourdomain.com/webhook"
low line 132

External URL reference

SourceSKILL.md
132f"https://api.telegram.org/bot{BOT_TOKEN}/setWebhook",
low line 154

External URL reference

SourceSKILL.md
154f"https://api.telegram.org/bot{BOT_TOKEN}/sendMessage",
low line 182

External URL reference

SourceSKILL.md
182{"text": "打开链接", "url": "https://example.com"}
low line 261

External URL reference

SourceSKILL.md
261<script src="https://telegram.org/js/telegram-web-app.js"></script>
low line 504

External URL reference

SourceSKILL.md
504tg.openInvoice('https://t.me/$invoice_link', (status) => {
low line 563

External URL reference

SourceSKILL.md
563"web_app": {"url": "https://yourdomain.com/app"}
low line 585

External URL reference

SourceSKILL.md
585"web_app": {"url": "https://yourdomain.com/app"}
low line 596

External URL reference

SourceSKILL.md
596→ 提供 URL: https://yourdomain.com/app
low line 638

External URL reference

SourceSKILL.md
638- 需要 API ID/Hash(从 https://my.telegram.org 获取)
low line 721

External URL reference

SourceSKILL.md
721- Bot API: https://core.telegram.org/bots/api
low line 722

External URL reference

SourceSKILL.md
722- Mini Apps: https://core.telegram.org/bots/webapps
low line 724

External URL reference

SourceSKILL.md
724- Telegram API: https://core.telegram.org
low line 734

External URL reference

SourceSKILL.md
734- https://my.telegram.org - 获取 API ID/Hash
Scanned on Feb 28, 2026
View Security Dashboard
Installation guide →