Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Star 9 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save kirillzubovsky/6333f09f3d557397dc6f to your computer and use it in GitHub Desktop.
Save kirillzubovsky/6333f09f3d557397dc6f to your computer and use it in GitHub Desktop.
A quick way to delete all your tweets using Twitter archive and a ruby script.
require 'twitter'
require "json"
USERNAME = 'YOUR_TWITTER_USER_NAME'
ARCHIVE_PATH = 'archive/data/js/tweets'
client = Twitter::REST::Client.new do |config|
config.consumer_key = 'TWITTER_APP_API_KEY'
config.consumer_secret = 'TWITTER_APP_API_SECRET'
config.access_token = 'TWITTER_APP_ACCESS_TOKEN'
config.access_token_secret = 'TWITTER_APP_ACCESS_TOKEN_SECRET'
end
Dir.foreach(ARCHIVE_PATH) do |item|
unless (item == '.') or (item == '..') or (item == '.DS_Store')
#ignore system files and paths
file = File.readlines("#{ARCHIVE_PATH}/#{item}")[1..-1].join()
data = JSON.parse(file)
data.each do |tweet|
removeId = tweet['id']
begin
client.destroy_status(removeId)
puts "destroyed tweet_id: #{removeId}"
rescue => e
puts "ooops: #{e} -- t_id: #{removeId}"
end
end
sleep(60)
end
end
@kirillzubovsky
Copy link
Author

To make this script work you first need to do two things on Twitter: (1) download your Archive and (2) create an app that is able to delete your own tweets. For more details, I've written a short post on how to delete your tweets using Ruby. Enjoy!

@Rishi333
Copy link

Great Script, works like a charm. I just wish I read the script first. I thought you wanted the PATH_TO_TWEET_ARCHIVE to point to the folder that twitter gave you as a download. I later realized you wanted the actual subdirectory that pointed to tweets in json format.

@kirillzubovsky
Copy link
Author

@Rishi333 good point. I will rework it to be more obvious.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment