pin_message()

Client.pin_message()

置顶指定消息

参数:
entity (user | chat | channel):

需要置顶的对话的对象。

message (int | None | message, 可选):

要置顶的消息 id 或者消息对象。如果值为 None,则将取消置顶所有消息。

notify (bool, 可选):

配置是否通知群成员。与官方应用程序不同,默认不通知所有成员。

示例

# 置顶消息
message = await client.send_message(chat, 'Pinotifying is fun!')
await client.pin_message(chat, message, notify=True)