Created
May 29, 2018 21:55
-
-
Save egeste/3db7c8442bf3afdd169746cacb9fb9a0 to your computer and use it in GitHub Desktop.
Unfollow all on soundcloud
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// 1. Go to https://soundcloud.com/you/following | |
// 2. Open javascript console. | |
// 3. Paste & hit <enter> | |
const unfollow = function() { | |
const button = document.querySelector('.sc-button-follow') | |
button && button.click() | |
button && setTimeout(unfollow, 0) | |
}; unfollow(); |
message
commented
Jan 15, 2021
•
The script still clicks on one user and does not proceed to the next.
From the output it looks like you're getting rate limited. Google http 429 error
Worked well.
Actually, It says I am following 26 people, but I used the code to unfollow everyone. Once I click on "following" it says I don't follow anyone. Weird. Anyone know what's going on?
code worked! thanks, but can you make a code that will follow for example 80 people from a soundcloud profile when you go to his followers
my fork of this gist has a working version.
Worked as intended. Thanks!
Hey can u send a working unreposter script thanks
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment