append a session's history on shell exit and unlimited history list
[lab.git] / Dev / twitter / dump_timeline.pl
index ae9cc94..4e2db3c 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);
         }
@@ -143,6 +140,7 @@ sub login {
         consumer_key    => $conf->{consumer_key},
         consumer_secret => $conf->{consumer_secret},
         legacy_lists_api => 0,
+        ssl             => 1,
     );
     
     $bot->access_token($conf->{access_token});