InstaPy - Python - 如何给一个特定的insta帐户500个关注者



我有一个Ubuntu服务器,我在上面安装/设置了InstaPy:https://github.com/timgrossmann/InstaPy

在服务器上一切正常。但是我怎样才能给一个特定的 insta 帐户 +500 个关注者呢?

我没有帐户的密码,并且该帐户已向公众开放。

我可以用python quickstart.py执行quickstart.py

我试过这个,但我怎么能放弃一个没有密码的特定帐户来给该帐户 500 个关注者?

from instapy import InstaPy
insta_username = 'SpecificAccountName'
insta_password = ''
# if you want to run this script on a server, 
# simply add nogui=True to the InstaPy() constructor
session = InstaPy(username=insta_username, password=insta_password,nogui=True)
session.login()
# set up all the settings
session.set_upper_follower_count(limit=500)
# do the actual liking
session.like_by_tags(['natgeo', 'world'], amount=100)
# end the bot session
session.end()

你不能简单地给一个帐户500个关注者,这不是InstaPy的工作方式。这个想法是与其他用户内容进行交互并恢复交互。

您还需要要使用的帐户的用户名和密码,对不起。

您可能需要尝试"购买Instagram xyz"服务之一。

谢谢

最新更新