channels.GetFullChannel
- class pyrogram.raw.functions.channels.GetFullChannel
Get full info about a supergroup, gigagroup or channel
- Details:
Layer:
223ID:
8736A09
- Parameters:
channel (
InputChannel) – The channel, supergroup or gigagroup to get info about- Returns:
TL Schema
channels.getFullChannel#8736a09
channel:InputChannel
= messages.ChatFull
Parameter Tree
GetFullChannel
└── channel →
InputChannel├──
InputChannel│ ├── channel_id →
long│ └── access_hash →
long├── peer →
InputPeer│ ├──
InputPeerEmpty│ ├──
InputPeerSelf│ ├──
InputPeerChat│ ├──
InputPeerUser│ ├──
InputPeerChannel│ ├──
InputPeerUserFromMessage├── msg_id →
int└── channel_id →
longExample
await app.invoke(
GetFullChannel(
channel=await app.resolve_channel(chat_id),
)
)