如何检查频道是否加入?
How to check if a channel is joined?
我通过 client.get_entity(id)
使用本地存储的 ID 获得了频道,我需要检查我是否仍然加入。我怀疑它可能是 not Channel.left
,但我还没有找到关于该领域的任何文档。
您关于 not channel.left
的假设是正确的。有关该字段的文档可以在这里找到:https://core.telegram.org/constructor/channel.
我通过 client.get_entity(id)
使用本地存储的 ID 获得了频道,我需要检查我是否仍然加入。我怀疑它可能是 not Channel.left
,但我还没有找到关于该领域的任何文档。
您关于 not channel.left
的假设是正确的。有关该字段的文档可以在这里找到:https://core.telegram.org/constructor/channel.