如何记录微信的历史?

时间:2016-10-18 07:33:33

标签: api wechat

我想从微信收到聊天记录(理想情况下,自动)。 关键是我们使用微信与几个亚洲合作伙伴进行企业沟通,并希望与整个团队分享对话。 重要的是,各方同意在微信之外保存历史,所以我们可以选择所有可能的选项。

1 个答案:

答案 0 :(得分:0)

有一个API和几个库可供使用。 Python中的示例代码如下所示:

# -*- coding: utf-8 -*-

import itchat, time
from itchat.content import *

# itchat.auto_login() # in case you want to use the PNG QR version
itchat.auto_login(enableCmdQR=2)

@itchat.msg_register(itchat.content.TEXT)
def text_reply(msg):
    print ( "\nNew incoming message: " )
    print msg['Content'] # Print the received message
    print msg['User']['Alias'] # Show the senders alias

itchat.run()

我正在使用这个库: https://github.com/littlecodersh/ItChat/blob/master/README_EN.md

从那里可以将消息注入CRM系统,例如跟踪历史记录。