From fb66fbcd839669d24e153379c9e1a84470c32320 Mon Sep 17 00:00:00 2001 From: Moosa Imran <90385297+Moosa-Imran@users.noreply.github.com> Date: Tue, 2 Apr 2024 16:30:32 +0500 Subject: [PATCH] Discontinuation of a specific API callback. Instagram has modified its API, leading to the discontinuation of a specific API callback. As a result, the program is experiencing functionality issues. To Correct this following line should be commented: self.following = self.check_following(). --- src/Osintgram.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Osintgram.py b/src/Osintgram.py index d1e5571b..97a26f91 100644 --- a/src/Osintgram.py +++ b/src/Osintgram.py @@ -57,7 +57,7 @@ def setTarget(self, target): user = self.get_user(target) self.target_id = user['id'] self.is_private = user['is_private'] - self.following = self.check_following() + #self.following = self.check_following() self.__printTargetBanner__() self.output_dir = self.output_dir + "/" + str(self.target) Path(self.output_dir).mkdir(parents=True, exist_ok=True)