Added markAsSpam

This commit is contained in:
Kacper Ziubryniewicz
2018-08-10 12:03:14 +02:00
committed by GitHub
parent 8aef4dc2ec
commit 3f75f8ed31

View File

@@ -1940,6 +1940,18 @@ class Client(object):
"""
r = self._post(self.req_url.MARK_SEEN, {"seen_timestamp": 0})
return r.ok
def markAsSpam(self, thread_id=None):
"""
Mark a thread as spam and delete it
:param thread_id: User/Group ID to mark as spam. See :ref:`intro_threads`
:return: Whether the request was successful
:raises: FBchatException if request failed
"""
thread_id, thread_type = self._getThread(thread_id, None)
r = self._post(self.req_url.MARK_SPAM, {"id": thread_id})
return r.ok
def friendConnect(self, friend_id):
"""