python 为什么pyrogram看不到聊天描述?

9nvpjoqh  于 2023-03-11  发布在  Python
关注(0)|答案(1)|浏览(157)

pyrogram看不到聊天描述
我在我的聊天室里写了描述

@app.on_message()
async def handler(_, msg: types.Message):
    print(msg.chat.bio)
    print(msg.chat.description)

这/\输出这/

None
None
pzfprimi

pzfprimi1#

Message对象中的Chat对象没有描述。您必须显式调用app.get_chat()以获取Chat.bioChat.description
biostr,可选)-私人聊天中对方的个人简介。仅在get_chat()中返回。
descriptionstr,可选)-描述,用于组、超级组和通道聊天。仅在get_chat()中返回。
https://docs.pyrogram.org/api/types/Chat

相关问题