|
| 1 | +from rocketapi.exceptions import NotFoundException, BadResponseException |
| 2 | +from rocketapi.rocketapi import RocketAPI |
| 3 | + |
| 4 | + |
| 5 | +class ThreadsAPI(RocketAPI): |
| 6 | + def __init__(self, token, max_timeout=30): |
| 7 | + """ |
| 8 | + Threads API client. |
| 9 | +
|
| 10 | + Args: |
| 11 | + token (str): Your RocketAPI token (https://rocketapi.io/dashboard/) |
| 12 | + max_timeout (int): Maximum timeout for requests. Please, don't use values lower than 15 seconds, it may cause problems with API. |
| 13 | +
|
| 14 | + For debugging purposes you can use the following variables: |
| 15 | + last_response (dict): contains the last response from the API. |
| 16 | + counter (int): contains the number of requests made in the current session. |
| 17 | +
|
| 18 | + For more information, see documentation: https://docs.rocketapi.io/api/ |
| 19 | + """ |
| 20 | + self.last_response = None |
| 21 | + self.counter = 0 |
| 22 | + super().__init__(token, max_timeout=max_timeout) |
| 23 | + |
| 24 | + def request(self, method, data): |
| 25 | + response = super().request(method, data) |
| 26 | + self.last_response = response |
| 27 | + self.counter += 1 |
| 28 | + if response["status"] == "done": |
| 29 | + if ( |
| 30 | + response["response"]["status_code"] == 200 |
| 31 | + and response["response"]["content_type"] == "application/json" |
| 32 | + ): |
| 33 | + return response["response"]["body"] |
| 34 | + elif response["response"]["status_code"] == 404: |
| 35 | + raise NotFoundException("Instagram resource not found") |
| 36 | + else: |
| 37 | + raise BadResponseException("Bad response from Threads") |
| 38 | + raise BadResponseException("Bad response from RocketAPI") |
| 39 | + |
| 40 | + def search_users(self, query): |
| 41 | + """ |
| 42 | + Search for a specific user in Threads |
| 43 | +
|
| 44 | + Args: |
| 45 | + query (str): Username to search for |
| 46 | +
|
| 47 | + For more information, see documentation: https://docs.rocketapi.io/api/threads/search_users |
| 48 | + """ |
| 49 | + return self.request("threads/search_users", {"query": query}) |
| 50 | + |
| 51 | + def get_user_info(self, user_id): |
| 52 | + """ |
| 53 | + Retrieve Threads user information by id. |
| 54 | +
|
| 55 | + Args: |
| 56 | + user_id (int): User id |
| 57 | +
|
| 58 | + For more information, see documentation: https://docs.rocketapi.io/api/threads/user/get_info |
| 59 | + """ |
| 60 | + return self.request("threads/user/get_info", {"id": user_id}) |
| 61 | + |
| 62 | + def get_user_feed(self, user_id, max_id=None): |
| 63 | + """ |
| 64 | + Retrieve Threads user feed by id. |
| 65 | +
|
| 66 | + Args: |
| 67 | + user_id (int): User id |
| 68 | + max_id (str): Use for pagination |
| 69 | +
|
| 70 | + You can use the `max_id` parameter to paginate through the media (take from the `next_max_id` field of the response). |
| 71 | +
|
| 72 | + For more information, see documentation: https://docs.rocketapi.io/api/threads/user/get_feed |
| 73 | + """ |
| 74 | + payload = {"id": user_id} |
| 75 | + if max_id is not None: |
| 76 | + payload["max_id"] = max_id |
| 77 | + return self.request("threads/user/get_feed", payload) |
| 78 | + |
| 79 | + def get_user_replies(self, user_id, max_id=None): |
| 80 | + """ |
| 81 | + Retrieve Threads user replies by id. |
| 82 | +
|
| 83 | + Args: |
| 84 | + user_id (int): User id |
| 85 | + max_id (str): Use for pagination |
| 86 | +
|
| 87 | + You can use the `max_id` parameter to paginate through the media (take from the `next_max_id` field of the response). |
| 88 | +
|
| 89 | + For more information, see documentation: https://docs.rocketapi.io/api/threads/user/get_replies |
| 90 | + """ |
| 91 | + payload = {"id": user_id} |
| 92 | + if max_id is not None: |
| 93 | + payload["max_id"] = max_id |
| 94 | + return self.request("threads/user/get_replies", payload) |
| 95 | + |
| 96 | + def get_user_followers(self, user_id, max_id=None): |
| 97 | + """ |
| 98 | + Retrieve Threads user followers by id. |
| 99 | +
|
| 100 | + Args: |
| 101 | + user_id (int): User id |
| 102 | + max_id (str): Use for pagination |
| 103 | +
|
| 104 | + You can use the `max_id` parameter to paginate through followers (take from the `next_max_id` field of the response). |
| 105 | +
|
| 106 | + For more information, see documentation: https://docs.rocketapi.io/api/threads/user/get_followers |
| 107 | + """ |
| 108 | + payload = {"id": user_id} |
| 109 | + if max_id is not None: |
| 110 | + payload["max_id"] = max_id |
| 111 | + return self.request("threads/user/get_followers", payload) |
| 112 | + |
| 113 | + def search_user_followers(self, user_id, query): |
| 114 | + """ |
| 115 | + Search Threads user followers by user id. |
| 116 | +
|
| 117 | + Args: |
| 118 | + user_id (int): User id |
| 119 | + query (str): Search query |
| 120 | +
|
| 121 | + For more information, see documentation: https://docs.rocketapi.io/api/threads/user/get_followers |
| 122 | + """ |
| 123 | + return self.request( |
| 124 | + "threads/user/get_followers", {"id": user_id, "query": query} |
| 125 | + ) |
| 126 | + |
| 127 | + def get_user_following(self, user_id, max_id=None): |
| 128 | + """ |
| 129 | + Retrieve Threads user following by id. |
| 130 | +
|
| 131 | + Args: |
| 132 | + user_id (int): User id |
| 133 | + max_id (str): Use for pagination |
| 134 | +
|
| 135 | + You can use the `max_id` parameter to paginate through followers (take from the `next_max_id` field of the response). |
| 136 | +
|
| 137 | + For more information, see documentation: https://docs.rocketapi.io/api/threads/user/get_following |
| 138 | + """ |
| 139 | + payload = {"id": user_id} |
| 140 | + if max_id is not None: |
| 141 | + payload["max_id"] = max_id |
| 142 | + return self.request("threads/user/get_following", payload) |
| 143 | + |
| 144 | + def search_user_following(self, user_id, query): |
| 145 | + """ |
| 146 | + Search Threads user following by user id. |
| 147 | +
|
| 148 | + Args: |
| 149 | + user_id (int): User id |
| 150 | + query (str): Search query |
| 151 | +
|
| 152 | + For more information, see documentation: https://docs.rocketapi.io/api/threads/user/get_following |
| 153 | + """ |
| 154 | + return self.request( |
| 155 | + "threads/user/get_following", {"id": user_id, "query": query} |
| 156 | + ) |
| 157 | + |
| 158 | + def get_thread_replies(self, thread_id, max_id=None): |
| 159 | + """ |
| 160 | + Retrieve thread replies by id. |
| 161 | +
|
| 162 | + Args: |
| 163 | + thread_id (int): Thread id |
| 164 | + max_id (str): Use for pagination |
| 165 | +
|
| 166 | + You can use the `max_id` parameter to paginate through the media (take from the `paging_tokens["downwards"]` field of the response). |
| 167 | +
|
| 168 | + For more information, see documentation: https://docs.rocketapi.io/api/threads/thread/get_replies |
| 169 | + """ |
| 170 | + payload = {"id": thread_id} |
| 171 | + if max_id is not None: |
| 172 | + payload["max_id"] = max_id |
| 173 | + return self.request("threads/thread/get_replies", payload) |
| 174 | + |
| 175 | + def get_thread_likes(self, thread_id): |
| 176 | + """ |
| 177 | + Retrieve thread likes by id. |
| 178 | +
|
| 179 | + Args: |
| 180 | + thread_id (int): Thread id |
| 181 | +
|
| 182 | + For more information, see documentation: https://docs.rocketapi.io/api/threads/thread/get_likes |
| 183 | + """ |
| 184 | + payload = {"id": thread_id} |
| 185 | + return self.request("threads/thread/get_likes", payload) |
0 commit comments