diff --git a/fbchat/client.py b/fbchat/client.py index bf7af1c..ed90cee 100644 --- a/fbchat/client.py +++ b/fbchat/client.py @@ -486,7 +486,11 @@ class Client(object): newer api needs these parameter to work. ''' - data = {"msgs_recv": 0} + data = { + "msgs_recv": 0, + "channel": self.user_channel, + "clientid": self.client_id + } r = self._get(StickyURL, data) j = get_json(r.text)