action blocked but I am in China so I cannot sign in VPN without proxy
Are there any way to solve it?
many thanks
action blocked but I am in China so I cannot sign in VPN without proxy
Are there any way to solve it?many thanks
Leave China. Do your insta setup. Go back to China
You can use proxy with InstaPy. Action blocked is not caused by VPN, It might caused by too many engagements. Can you please post your configure ?
You can use proxy with InstaPy. Action blocked is not caused by VPN, It might caused by too many engagements. Can you please post your configure ?
i did not change any setting:
with smart_run(session):
""" Activity flow """
# general settings
session.set_relationship_bounds(enabled=True,
delimit_by_numbers=True,
max_followers=4590,
min_followers=45,
min_following=77)
session.set_dont_include(["friend1", "friend2", "friend3"])
session.set_dont_like(["pizza", "#store"])
# activities
""" Massive Follow of users followers (I suggest to follow not less than
3500/4000 users for better results)...
"""
session.follow_user_followers(['user1', 'user2', 'user3'], amount=800,
randomize=False, interact=False)
""" First step of Unfollow action - Unfollow not follower users...
"""
session.unfollow_users(amount=500, InstapyFollowed=(True, "nonfollowers"),
style="FIFO",
unfollow_after=12 * 60 * 60, sleep_delay=601)
""" Second step of Massive Follow...
"""
session.follow_user_followers(['user1', 'user2', 'user3'], amount=800,
randomize=False, interact=False)
""" Second step of Unfollow action - Unfollow not follower users...
"""
session.unfollow_users(amount=500, InstapyFollowed=(True, "nonfollowers"),
style="FIFO",
unfollow_after=12 * 60 * 60, sleep_delay=601)
""" Clean all followed user - Unfollow all users followed by InstaPy...
"""
session.unfollow_users(amount=500, InstapyFollowed=(True, "all"),
style="FIFO", unfollow_after=24 * 60 * 60,
sleep_delay=601)
""" Joining Engagement Pods...
"""
photo_comments = ['Nice shot! @{}',
'Awesome! @{}',
'Cool :thumbsup:',
'Just incredible :open_mouth:',
'What camera did you use @{}?',
'Love your posts @{}',
'Looks awesome @{}',
'Nice @{}',
':raised_hands: Yes!',
'I can feel your passion @{} :muscle:']
session.set_do_comment(enabled = True, percentage = 95)
session.set_comments(photo_comments, media = 'Photo')
session.join_pods()
Thanks for your help, Charles ><
Your bot is following way too fast. The file you used is an example and is not supposed to be used like that. Look into the DOCUMENTATION.md file and read about the limitations you need to set (quota supervisor, action delay, ...).
Try to like less than 1000 images per day and less than 200 follows per day.
session.set_dont_include(["friend1", "friend2", "friend3"])
session.set_dont_like(["pizza", "#store"])
did you changed anything on the script except the username and password ? :D
Icarus has flown too close to the sun, DOCUMENTATION.MD as stated above :)
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.
If this problem still occurs, please open a new issue
Most helpful comment
Your bot is following way too fast. The file you used is an example and is not supposed to be used like that. Look into the DOCUMENTATION.md file and read about the limitations you need to set (quota supervisor, action delay, ...).
Try to like less than 1000 images per day and less than 200 follows per day.