fbchat icon indicating copy to clipboard operation
fbchat copied to clipboard

Facebook Chat (Messenger) for Python

Results 109 fbchat issues
Sort by recently updated
recently updated
newest added

I'm trying to log in, but I can't The code is: from fbchat import Client from fbchat.models import * if not client.isLoggedIn(): client = Client('PHONE', 'PASS') The Traceback: Logging in...

These are the fixes, worked for me and hope will work for others too. - Removed restriction of specified reactions. - Added system to manually enter `c_name` from browser cookie...

## Code ```py from fbchat import Client from fbchat.models import * client = Client('', '') ``` ## Error ``` Exception has occurred: ModuleNotFoundError No module named 'fbchat.models' File "C:\Users\User\Desktop\Facebook\main.py", line...

Hello! I need to search user by mobile phone number (or send message to user with phone number). It possible by it package? Thank you!

Make sure you're using python 3.8 and below (fbchat will not work with 3.9) then change _state line that says " revision = int(r.text.split('"client_revision":', 1)[1].split(",", 1)[0])" to revision = 1

I know this project is unmaintained, but maybe someone figured out how to sent these. Basically sending every other media by url works (images, videoclips), but when it's trying to...

## Description of the problem Client.isLoggedIn() raises ```AttributeError: 'NoneType' object has no attribute 'is_logged_in'``` referring to the Client._state property. ## Code to reproduce ```import fbchat as fb client = fb.Client('[email protected]',...

Hello, I am trying to use the module, first with python 3.10 for windows and now downgraded to 3.7, but the error was unaffected. Please see details below, I have...

## Description of the problem on Message received gives out a UnicodeDecodeError ## Code to reproduce ```py from Essential.esen import email, password from fbchat.models import * import fbchat import json...