need to provide clientid to request

This commit is contained in:
Daniel Cepeda
2016-10-26 14:19:14 -07:00
parent 65fbb77451
commit 24a4c6c554

View File

@@ -462,7 +462,10 @@ class Client(object):
newer api needs these parameter to work.
'''
data = {"msgs_recv": 0}
data = {
"msgs_recv": 0,
"clientid": self.client_id
}
r = self._get(StickyURL, data)
j = get_json(r.text)