Skip to content

Commit 59f25ac

Browse files
author
Rahandi Noor Pasha
authored
Update InstagramAPI.py
Story retrieval feature
1 parent e0cc67d commit 59f25ac

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)