我一直在python中使用fbchat作为Messenger。但是我不确定这是合法的。我唯一需要的原因是向与我成为Facebook朋友的人发送消息。
是否可以使用图形API向特定用户发送消息?如果不是,下面的代码可以使用吗?
很抱歉,如果问题格式错误,我才开始使用Stack Overflow。
from fbchat import Client
from fbchat.models import *
client = Client('<email>', '<password>')
print('Own id: {}'.format(client.uid))
client.send(Message(text='Hi me!'), thread_id=client.uid, thread_type=ThreadType.USER)
client.logout()