We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I al trying to check the followers of a profile, and I want to also retrieve data:
from instagrapi import Client ACCOUNT_USERNAME = 'xxx' ACCOUNT_PASSWORD = 'xxx' cl = Client() cl.login(ACCOUNT_USERNAME, ACCOUNT_PASSWORD) user_id = '12345436465' followers = cl.user_followers(user_id, amount=10)
The data I am getting is :
although it say include reels, I dont see any story data (I checked story exists on some users)
The text was updated successfully, but these errors were encountered:
here is the issue
Sorry, something went wrong.
class UserShort(TypesBaseModel): def hash(self): return hash(self.pk)
def __eq__(self, other): if isinstance(other, UserShort): return self.pk == other.pk return NotImplemented pk: str username: Optional[str] = None username: Optional[str] full_name: Optional[str] = "" profile_pic_url: Optional[HttpUrl] = None profile_pic_url_hd: Optional[HttpUrl] = None is_private: Optional[bool] = None is_verified: Optional[bool] # not found in hashtag_medias_v1 latest_reel_media: Optional[int] has_anonymous_profile_picture: Optional[bool] # stories: List = [] # not found in fbsearch_suggested_profiles
No branches or pull requests
I al trying to check the followers of a profile, and I want to also retrieve data:
The data I am getting is :
although it say include reels, I dont see any story data (I checked story exists on some users)
The text was updated successfully, but these errors were encountered: