Open instasck opened 6 months ago
here is the issue
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
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)