我正在 python 上使用 instabot 包来构建一个应用程序,该应用程序会自动在我的个人资料上发布照片。
这是我写的代码
from instabot import Bot
import configparser
# Reading Configs
config = configparser.ConfigParser()
config.read("config.ini")
# Setting configuration values
username = str(config['Instagram']['user'])
password = str(config['Instagram']['password'])
bot = Bot()
bot.login(username=username, password=password)
bot.upload_photo("./pic.png", caption="caption")
bot.logout()
问题是我收到错误
2024-08-03 19:01:54,188 - INFO - Not yet logged in starting: PRE-LOGIN FLOW!
2024-08-03 19:01:54,754 - ERROR - Request returns 429 error!
2024-08-03 19:01:54,754 - WARNING - That means 'too many requests'. I'll go to sleep for 5 minutes.
如何解决?我可以使用其他套餐吗?