我的机器人发送内联键盘到一个电报组。键盘发送没有问题,但当用户点击时,电报没有响应。我已经使用heroku logs -t
检查了我的heroku日志。电报没有ping。这可能是怎么发生的?这可能是电报方面的问题吗?
其他信息:所有其他功能均正常工作。
TELEGRAM_WEBSITE = "https://api.telegram.org/" + <BOT_TOKEN>
response_body=requests.post(TELEGRAM_WEBSITE + "/sendmessage",
data={"text": "{}".format(TEXT), "parse_mode": "HTML",
"chat_id": "{}".format(CHAT_ID),
"reply_markup": json.dumps(
{"inline_keyboard": [[{"text": "{}".format(BET_POSITION),
"callback_data": "{};{};{};{};{};{}".format(BET_SUM,CHALLENGE_TYPE,RIVAL_TELE_ID,TELE_ID,BET_POSITION,USERNAME)}]]})})
response_body=response_body.json()
requests.post(TELEGRAM_WEBSITE + "/sendmessage?chat_id={}&text={}".format(<my telegram id>, response_body))
^这是我寄来的键盘。
{'ok': True, 'result': {'message_id': 769, 'from': {'id': <>, 'is_bot': True, 'first_name': '<bot name>', 'username': '<bot username>'}, 'chat': {'id': <group chai id >, 'title': '<group title>', 'username': '<group username>', 'type': 'supergroup'}, 'date': 1594645500, 'text': 'CHALLENGE-\nChallenged by:<my username>\nBet:500', 'entities': [{'offset': 27, 'length': 8, 'type': 'text_mention', 'user': {'id': <id>, 'is_bot': False, 'first_name': '<my first name>', 'username': '<my username>', 'language_code': 'en'}}], 'reply_markup': {'inline_keyboard': [[{'text': 'call', 'callback_data': '10;open;;<my telegram id>;9 bets;<my username>'}]]}}}
^这里是response_body
正在发送的确认,第二个确认显然是我可以看到手机上的键盘。
2条答案
按热度按时间t3irkdon1#
问题出在Telegram这边,我换了机器人令牌,键盘就能用了。
c2e8gylq2#
要回答此问题: