Skip to content

Commit 8267060

Browse files
authored
Merge pull request #291 from Rahandi/patch-1
Update InstagramAPI.py
2 parents e0cc67d + 59f25ac commit 8267060

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

InstagramAPI/InstagramAPI.py

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -583,7 +583,10 @@ def editProfile(self, url, phone, first_name, biography, email, gender):
583583
'email': email,
584584
'gender': gender})
585585
return self.SendRequest('accounts/edit_profile/', self.generateSignature(data))
586-
586+
587+
def getStory(self, usernameId):
588+
return self.SendRequest('feed/user/' + str(usernameId) + '/reel_media/')
589+
587590
def getUsernameInfo(self, usernameId):
588591
return self.SendRequest('users/' + str(usernameId) + '/info/')
589592

0 commit comments

Comments
 (0)