1

インライン キーボードを作成し、コールバック クエリにメッセージで応答しようとしています。端末はクエリを受信して​​いますが、メッセージや最終的には写真などで返信するための正しい構文がわかりません。

テレグラム エラー 400 が表示されることがあります。

import sys
import time
import telepot
from telepot.loop import MessageLoop
from telepot.namedtuple import InlineKeyboardMarkup, InlineKeyboardButton
from telepot.delegate import (
   per_chat_id, create_open, pave_event_space, include_callback_query_chat_id)

def on_chat_message(msg):
   content_type, chat_type, chat_id = telepot.glance(msg)

   if content_type == 'text':
       if msg['text'] == '/start':
          bot.sendMessage(chat_id, 'Welcome to @UK_Cali Teleshop\n      Created by JonSnow 2021',reply_markup = InlineKeyboardMarkup(inline_keyboard=[
                                   [InlineKeyboardButton(text="Feedback",callback_data='a'), InlineKeyboardButton(text="You",callback_data='b'),InlineKeyboardButton(text="PGP",callback_data='c'), InlineKeyboardButton(text="Cunt",callback_data='d')],
                                   [InlineKeyboardButton(text="Products",callback_data='e')]
                               ]
                           ))

def on_callback_query(msg):
   query_id, from_id, query_data = telepot.glance(msg, flavor='callback_query')
   print('Callback Query:', query_id, from_id, query_data)

   if query_data == 'a':
       bot.answerCallbackQuery(query_id, text='Welcome to @UK_Cali Teleshop')



   

bot = telepot.Bot('1646167995:AAGsOwfjcryYYkoah69QJ6XGA7koUywmuRk')
MessageLoop(bot, {'chat': on_chat_message,
                 'callback_query': on_callback_query}).run_as_thread()
print('Listening ...')

while 1:
   time.sleep(10)            

4

1 に答える 1