我正在尝试为 instapy 编写代码,以通过标签对帖子进行喜欢和评论。它显示标签页面,但不与帖子交互。我的代码:
session = InstaPy(username, password)
session.login()
session.set_relationship_bounds(enabled=True,max_followers=200)
session.set_do_follow(True,percentage=100)
session.like_by_tags(["indiemusic", "heartbreakanniversary"], amount=5,interact=True)
session.set_dont_like(["naked", "nsfw"])
session.set_do_follow(True, percentage=50)
session.set_do_comment(True, percentage=50)
session.set_comments(["Nice!", "S`weet!", "Beautiful :heart_eyes:"])
session.set_user_interact(amount=1,randomize=True,percentage=100)
session.end()