Discord.py: 我怎样才能得到一个频道的所有帖子以及谁发的?

Discord.py: How can I get all the posts and who made them from a channel?

我正在尝试获取某个频道的所有帖子。你能帮我么?我正在搜索,但我唯一找到的是 guild.text_channels,但我找不到如何获取所有帖子以及发帖人。

感谢您的回复。

使用async for ... in channel.history()documentation.

示例:打印最后 100 条消息及其作者。

for channel guild.text_channels:
    async for message in channel.history(limit=100):
        print(message.content, 'by', str(message.author))