Skip to content

Instantly share code, notes, and snippets.

@hiroxto
Last active February 25, 2017 12:17
Show Gist options
  • Save hiroxto/8fa5de1ebebb194ea95a to your computer and use it in GitHub Desktop.
Save hiroxto/8fa5de1ebebb194ea95a to your computer and use it in GitHub Desktop.
黒歴史クリーナーもどき
require "twitter"
require "csv"
client = Twitter::REST::Client.new do |config|
config.consumer_key = ""
config.consumer_secret = ""
config.access_token = ""
config.access_token_secret = ""
end
CSV.foreach("tweets.csv", headers: true) do |row|
puts row[0]
client.destroy_status(row[0])
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment