我在python中使用instabot api遇到错误400

问题描述 投票:0回答:1

[当前,我想为instagram生成一个机器人,该机器人应自动关注另一个帐户中的人,但出现错误:我在python中使用instabot api遇到错误400。

Python代码:

# importar la clase a utilizar
from instabot import Bot
# crear el nuevo objeto
mi_bot = Bot()
mi_bot.login(username='xxxxxxxx', password='xxxxxxxxx')
mi_bot.follow_followers('xxxxxxxx')

我如下在cmd上执行它。

python main.py

出现的错误如下:

2020-02-20 17:23:10,742 - instabot version: 0.107.0 (bot) - INFO - Instabot version: 0.107.0 Started
2020-02-20 17:23:10,773 - instabot version: 0.107.0 (api_login) - INFO - PRE-LOGIN FLOW!... 
2020-02-20 17:23:22,801 - instabot version: 0.107.0 (api) - ERROR - Request returns 400 error!
2020-02-20 17:23:22,801 - instabot version: 0.107.0 (api) - INFO - Instagram's error message: challenge_required
2020-02-20 17:23:22,801 - instabot version: 0.107.0 (api) - INFO - Error type: checkpoint_challenge_required
2020-02-20 17:23:22,801 - instabot version: 0.107.0 (api) - INFO - Checkpoint challenge required...
2020-02-20 17:23:22,816 - instabot version: 0.107.0 (bot_follow) - INFO - Follow followers of: xxxxxxxxxxxx
2020-02-20 17:23:22,816 - instabot version: 0.107.0 (api) - CRITICAL - Not logged in!

我使用的python版本是3.8.1,据我了解是最新的。

python instagram
1个回答
0
投票

我有同样的问题,有什么消息吗?可以解决吗?

© www.soinside.com 2019 - 2024. All rights reserved.