'Instagrapi: Please wait a few minutes before you try again. WHY?

I used the code from @Xerneas 02, only it gives me this error.

This Code

from instagrapi import Client

bot = Client()

bot.login("username", "password")

album_path = ["immagini/81/Home/1.jpeg", "immagini/81/Home/2.jpeg", "immagini/81/Home/3.jpeg",
"immagini/81/Home/4.jpeg", "immagini/81/Home/5.jpeg", "immagini/81/Home/6.jpeg","immagini/81/Home/7.jpeg"]

text =  "text"

bot.album_upload(
   album_path,
   caption = text
)

This is the error:

instagrapi.exceptions.PleaseWaitFewMinutes: Please wait a few minutes before you try again.

i also tried uninstalling and reinstalling instagrapi.

how can i fix it

i also tried to change instagram account, but nothing. have I banned the ip address



Solution 1:[1]

Try to use proxy

from instagrapi import Client
    
bot = Client()
bot.set_proxy("http://<PROXY_LOGIN>:<PROXY_PWD>@<IP>:<PORT>")
bot.login("username", "password")

Sources

This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.

Source: Stack Overflow

Solution Source
Solution 1 ????? ???????