ohld / igbot

🐙 Free scripts, bots and Python API wrapper. Get free followers with our auto like, auto follow and other scripts!
https://hikerapi.com/p/N2P6iqiM
Apache License 2.0
4.69k stars 1.47k forks source link

500 Error (even with differents accounts and proxies) #711

Closed valentinpompa closed 5 years ago

valentinpompa commented 5 years ago

Please follow the guide below


Before submitting an issue, make sure you have:

Purpose of your issue?


The following sections requests more details for particular types of issues, you can remove any section (the contents between the triple ---) not applicable to your issue.


For a bug report, you must include the Python version used, code that will reproduce the error, and the error log/traceback.

Paste the output of python -V here: 3.7.0

Code:

import os
import sys

sys.path.append(os.path.join(sys.path[0], '../'))
from instabot import Bot

parser = argparse.ArgumentParser(add_help=True)
parser.add_argument('-u', type=str, help="username")
parser.add_argument('-p', type=str, help="password")
parser.add_argument('-proxy', type=str, help="proxy")
args = parser.parse_args()

bot = Bot(filter_users=False, like_delay=200, max_likes_to_like=80)
bot.login(username=args.u, password=args.p, proxy="")

users_to_like = bot.read_list_from_file("1_like_user_list.txt")
if not users_to_like:
    exit()
else:
    print("Found %d users in file." % len(users_to_like))

bot.like_users(users_to_like, nlikes=2)

Error/Debug Log:

ERROR - Request returns 500 error

I don't know if this new "500 Error" (new for me, and I working with this more than 3 months) is because the new changes of Instagram to attack the fake accounts for selling followers.

Is somebody also with this same issue?

howhigh1337 commented 5 years ago

There is an issue with API on their end, you can refer here for the updates: https://developers.facebook.com/status/issues/317603295743499/

stale[bot] commented 5 years ago

This issue has been automatically marked as stale because it has not had recent activity. It will be closed if no further activity occurs. Thank you for your contributions.