mirror of
https://github.com/davidarroyo1234/InstagramUnfollowers.git
synced 2026-04-26 05:15:52 +03:00
[GH-ISSUE #55] Unfollow list of usernames #26
Labels
No labels
bug
documentation
pull-request
No milestone
No project
No assignees
1 participant
Notifications
Due date
No due date set.
Dependencies
No dependencies set.
Reference
starred/InstagramUnfollowers#26
Loading…
Add table
Add a link
Reference in a new issue
No description provided.
Delete branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Originally created by @guikfe on GitHub (Jan 27, 2023).
Original GitHub issue: https://github.com/davidarroyo1234/InstagramUnfollowers/issues/55
Is it possible to inject a list of usernames by manipulating some global variable and then calling the unfollow function on it?
@tomleb3 commented on GitHub (Jan 27, 2023):
You mean you already have a specific list of usernames you want to unfollow without having to select them from the list?
@guikfe commented on GitHub (Jan 27, 2023):
Exactly. I'm asking that because instagram temporarily prevented the unfollowing action, so I would like to resume it after a few hours.
@tomleb3 commented on GitHub (Jan 29, 2023):
Sorry, but it'll be a bit tricky to implement.
The unfollow action required the id number of the user.
So a list of usernames doesn't get us far in this case unfortunately.
@guikfe commented on GitHub (Feb 1, 2023):
Hello,
I'm documenting here the Javascript code that I created and may help other users. This code aims to check multiple pages of InstagramUnfollowers and select items corresponding to a list of username.
It performs the following steps:
findInputByUsernamefunction to locate the input element corresponding to each username using XPath.checkInputfunction to evaluate theonchangeattribute of the found element and execute the corresponding code.After all the users are selected, proceed with the normal flow by clicking
UNFOLLOW.Thanks