InstaPy / instapy-quickstart

đŸ’¨ Simply get InstaPy up and running in minutes.
GNU General Public License v3.0
765 stars 796 forks source link

Need help! Internet Connection Status: error #262

Open OCEANRAI opened 2 years ago

OCEANRAI commented 2 years ago

i need help to figure out this problem

C:\Users\User\OneDrive\Desktop\insta bot>py instagram.py InstaPy Version: 0.6.16 .. .. .. .. .. .. .. .. ._. Workspace in use: "C:/Users/User/InstaPy" OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO INFO [2022-05-25 23:07:54] [oceanrai] Session started! oooooooooooooooooooooooooooooooooooooooooooooooooooooo INFO [2022-05-25 23:07:54] [oceanrai] -- Connection Checklist [1/2] (Internet Connection Status) WARNING [2022-05-25 23:07:55] [oceanrai] - Internet Connection Status: error ........................................................................................................................ CRITICAL [2022-05-25 23:07:55] [oceanrai] Unable to login to Instagram! You will find more information in the logs above. '''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''' ERROR [2022-05-25 23:07:55] [oceanrai] You have too few comments, please set at least 10 distinct comments to avoid looking suspicious.

INFO [2022-05-25 23:07:57] [oceanrai] Sessional Live Report: |> No any statistics to show

[Session lasted 9.43 seconds] OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO INFO [2022-05-25 23:07:57] [oceanrai] Session ended! ooooooooooooooooooooooooooooooooooooooooooooooooooooooo

rdxshubham commented 2 years ago

You just need to add want_check_browser=False after headless_browser=False. Before running the script it checks if Instagram is up or not and it seems that is broken.

itmehr commented 2 years ago

want_check_browser=False

It works! TNX Bro.

VTOG123 commented 2 years ago

i have a problem too the script runs successfully but it keeps opening MY instagram page and not opening others like it should do, here's the code: from instapy import InstaPy from instapy import smart_run

my_username = 'nope' my_password = 'not today'

session = InstaPy(username = my_username, password = my_password, headless_browser = False, want_check_browser = False)

with smart_run(session): session.set_relationship_bounds(enabled=True, delimit_by_numbers=True, max_followers=500, min_followers=30, min_following=50)

session.follow_by_tags(['clothes', 'kids', 'family'], amount=15)