为了遍历松弛通道的消息,我编写了以下内容:如果您只想遍历 'text' 和 'ts' 怎么办?我自己写了以下内容,但出现错误TypeError:列表索引必须是整数或切片,而不是 strimport osfrom slack import WebClientfrom slack.errors import SlackApiErrorimport datetimeclient = WebClient(token=os.environ["SLACK_API_TOKEN"])channel_to_listen = os.environ['CHANNEL_TO_LISTEN']def main(): response = client.conversations_history(channel=channel_to_listen, limit= 10) messages = response['messages'] for message in messages: timestamp = messages['ts'] content = messages['text'] print(timestamp + " " + content)if __name__ == '__main__': main()我收到此错误:TypeError:列表索引必须是整数或切片,而不是 str如果我在消息中添加索引:messages = response['messages'][0]然后它将打印 10 次或与我在 limit 属性中相同的时间戳和相同的文本相同的次数,这是有道理的。
添加回答
举报
0/150
提交
取消