有几个搞电报推广的问,怎么给消息添加菜单按钮的消息。
简单点,可以用这两个机器人。
@chelpbot
@postbot
但是用这些机器人可能都有转发消息来源。
自己创建一个bot,放到自己频道或者群组里。
修改以下Python脚本,执行脚本,就可以发送菜单按钮的内联键盘文字消息。
import requests
telegram_token = "换成你的bot token"
chat_id = "换成频道或者群组id" # 构建Inline Keyboard
inline_keyboard = {
"inline_keyboard": [
[
{"text": "Button 1", "callback_data": "链接1"},
{"text": "Button 2", "callback_data": "链接2"}
],
[
{"text": "Button 3", "callback_data": "链接3"},
{"text": "Button 4", "callback_data": "链接4"}
]
]
}
# 构建消息
message_text = "这是一条包含Inline Keyboard内联键盘的消息。"
params = {
"chat_id": chat_id,
"text": message_text,
"reply_markup": inline_keyboard
}
# 发送消息
url = f"https://api.telegram.org/bot{telegram_token}/sendMessage"
response = requests.post(url, json=params)
print(response.json())
图片消息比较麻烦,就不写了,用那两个机器人去吧。
上一篇:
破解禁止截图 xposed 模块下一篇:
微信刷步数API