remove retweeted_by_me function
authorKen-ichi Mito <mitty@mitty.jp>
Fri, 21 Jun 2013 07:12:40 +0000 (16:12 +0900)
committerKen-ichi Mito <mitty@mitty.jp>
Fri, 21 Jun 2013 07:12:40 +0000 (16:12 +0900)
 * 'retweeted_by_me' was removed from Twitter API 1.1

Dev/twitter/dump_timeline.pl

index ae9cc94..4cec2a6 100755 (executable)
@@ -18,7 +18,7 @@ use Encode;
 my $help = sub {
     die <<EOM;
 usage: $0
-    [{u}ser_timeline(default)|{r}etweeted_by_me|{m}sentions|{s}earch
+    [{u}ser_timeline(default)|{m}sentions|{s}earch
         [screen_name
             [number_of_pages|all
                 [dump]
@@ -64,9 +64,6 @@ eval {
         if ($method eq 'user_timeline' || $method eq 'u') {
             $res = $bot->user_timeline($param);
         }
-        elsif ($method eq 'retweeted_by_me' || $method eq 'r') {
-            $res = $bot->retweeted_by_me($param);
-        }
         elsif ($method eq 'mentions' || $method eq 'm') {
             $res = $bot->mentions($param);
         }