0

我正在尝试评论 instagram 中的特定帖子,这是我的代码:

from instapy import InstaPy

insta_username = "username"
insta_password = "password"

session = InstaPy(username=insta_username, password=insta_password)
session.login()

# set up all the settings
session.set_relationship_bounds(enabled=True,delimit_by_numbers=True)
session.set_comments(['aMEIzing!', 'So much fun!!', 'Nicey!'])
session.set_do_comment(enabled=True, percentage=85)

session.interact_by_URL(urls=["https://www.instagram.com/p/CDBdLvUpTYu/?igshid=2im20zz3lvz5"], randomize=False, interact=True)
print("done")
# end the bot session
session.end()

这就是我得到的:

*INFO [2021-05-06 02:18:32] [用户名] --> 图片已被点赞!

信息 [2021-05-06 02:18:32] [用户名] 喜欢:0

信息 [2021-05-06 02:18:32] [用户名] 已经喜欢:1

INFO [2021-05-06 02:18:32] [用户名] 评论:0

INFO [2021-05-06 02:18:32] [用户名] 关注:0

信息 [2021-05-06 02:18:32] [用户名] 不适当:0

信息 [2021-05-06 02:18:32] [用户名] 无效用户:0*

有人可以帮我弄清楚为什么它没有评论任何东西!

4

1 回答 1

0

也设置此选项:

session.set_user_interact(amount=6, randomize=True, percentage=72, media='Photo')

金额,百分比可以根据您的配置更改

于 2021-05-12T01:21:16.743 回答