有人可以解释一下如何在Instabot上获取关注者列表吗? 到目前为止,我写的测试是:
from instabot import Bot
bot = Bot()
bot.login()
followers = bot.get_user_followers("danbilzerian")
for follower in followers:
print(follower)
当我运行它时,我只能插入我的登录名和密码,然后什么也没发生。 我已经阅读了文档和示例,但没有运气。
我错过了什么?
非常感谢你的帮助!