Replies: 1 comment
-
Same problem |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
here is my code , please check and tell if something is wrong
client = Client()
client.load_settings('files/dumps.json')
client.login(username='', password='')
client.get_timeline_feed()
print('logged in')
user = 'useraccount'
id = client.user_id_from_username(user)
user_story = client.user_stories(user_id=id)
print(user_story)
for story in user_story :
story = client.story_like(story.id)
print('done')
Beta Was this translation helpful? Give feedback.
All reactions