ping / instagram_private_api

A Python library to access Instagram's private API.
MIT License
2.95k stars 612 forks source link

highlights_user_feed return empty tray #360

Open ufilme opened 3 years ago

ufilme commented 3 years ago

Which client are you using?


Describe the Bug/Error:

The highlights_user_feed method is returning nothing


Paste the output of python -V here: Python 3.8.10

Code:

# Example code that will produce the error reported
from instagram_web_api import Client

profile = api.username_info(username)["user"]
print(profile)
print(api.highlights_user_feed(profile["pk"]))

Output:

{'tray': [], 'show_empty_state': True, 'status': 'ok'}

Rotzke commented 2 years ago

Dunno if this helps but I was getting the same result when I was inputting a wrong password, maybe double check your login procedure?

ufilme commented 2 years ago

Other methods work fine