Skip to content

Commit

Permalink
Discontinuation of a specific API callback.
Browse files Browse the repository at this point in the history
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().
  • Loading branch information
Moosa-Imran authored Apr 2, 2024
1 parent 3c61e53 commit fb66fbc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Osintgram.py
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down

0 comments on commit fb66fbc

Please sign in to comment.