From 3f75f8ed3138ab88dc666ed07be014f48a6f2f49 Mon Sep 17 00:00:00 2001 From: Kacper Ziubryniewicz Date: Fri, 10 Aug 2018 12:03:14 +0200 Subject: [PATCH] Added markAsSpam --- fbchat/client.py | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/fbchat/client.py b/fbchat/client.py index abc8ae6..c7b7e0b 100644 --- a/fbchat/client.py +++ b/fbchat/client.py @@ -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): """