标签: python facebook python-3.x
我可以通过fbchat模块发送消息,但我找不到接收它们的方法。有什么办法吗?这是我发送消息的方式
fbchat
from fbchat import Client from fbchat.models import * client = Client(email,password) while True: mssg=input('') client.sendMessage(mssg, thread_id=id, thread_type=ThreadType.USER/GROUP)