Skip to content

Instantly share code, notes, and snippets.

@dmpatierno
dmpatierno / unfollow.php
Created May 15, 2011 03:54
unfollow all users on tumblr
<?php
$cookie = "<insert cookies>";
$token = null;
do {
$users = get_users();
foreach ($users as $user)
unfollow($user);
} while (count($users));