View difference between Paste ID: 4JUrgD7V and vZk1DX1A
SHOW: | | - or go back to the newest paste.
1
from fbchat import Client
2
from fbchat.models import*
3
client = Client('you email', 'you pass')
4
for x in range(100):
5
6
 print('Own id: {}'.format(client.uid))
7
 client.send(Message(text='Hi me!'), thread_id=1000021111111, thread_type=ThreadType.USER)
8
client.logout()