Last change
on this file since 8c1cd5a was 85544a9, checked in by njw <njw@…>, 16 years ago |
minor fix to since-query-awkward
|
-
Property mode
set to
100644
|
File size:
757 bytes
|
Line | |
---|
1 | #! /usr/bin/env ruby
|
---|
2 |
|
---|
3 | # Norbert Wigbels
|
---|
4 | #
|
---|
5 | # remove all your tweets;
|
---|
6 | # basically, if you want to keep your account
|
---|
7 | #
|
---|
8 | # adapted from http://blog.johnwyles.com/articles/2009/01/06/destroying-deleting-and-erasing-old-twitter-tweets/
|
---|
9 |
|
---|
10 | require 'rubygems'
|
---|
11 | require 'activesupport'
|
---|
12 | require 'twitter'
|
---|
13 |
|
---|
14 |
|
---|
15 | # auth yourself
|
---|
16 | httpauth = Twitter::HTTPAuth.new('YOUR_USERNAME', 'PASSWORD')
|
---|
17 | twitter = Twitter::Base.new(httpauth)
|
---|
18 |
|
---|
19 | # go for complete deletion
|
---|
20 | chunk = twitter.user_timeline
|
---|
21 | while chunk do
|
---|
22 | chunk.each do |s|
|
---|
23 | twitter.status_destroy(s.id)
|
---|
24 | puts "Deleted tweet: [#{s.id}] \"#{s.text}\" (#{s.created_at})"
|
---|
25 | end
|
---|
26 | chunk = twitter.user_timeline
|
---|
27 | end
|
---|
28 |
|
---|
29 | # finally
|
---|
30 | twitter.update("Hey! Ho! Let's Go #rmallyourtweets http://foobla.wigbels.de/tag/delete-all-tweets/")
|
---|
Note:
See
TracBrowser
for help on using the repository browser.