Pyrogram RequestPerrButton

20 views Asked by At

i want to request one of the users owned channels in pyrogram.

heres my code

from pyrogram.raw.types import KeyboardButtonRequestPeer, RequestPeerTypeBroadcast
from pyrogram import types

async def request_channel(message:types.Message)
     btn = [
                [
                    KeyboardButtonRequestPeer(
                        text="Select Channel",
                        button_id=1,
                        peer_type=RequestPeerTypeBroadcast(creator=True),
                    )
                ]
            ]
     keyboard = types.InlineKeyboardMarkup(btn)
     
     await message.reply_text("Select your channel:", reply_markup=keyboard)
    

this raises meaningless exceptions that are all because of the keyboard.

0

There are 0 answers