* wkossen <w.kos...@gmail.com> [100930 01:25]:
> 
> my $client = Net::Twitter->new(
>     traits => ['OAuth', 'API::REST'],
>     consumer_key => $ckey,
>     consumer_secret => $csec,
>     access_token => $atok,
>     access_secret => $asec,

Here's the problem.  It's access_token_secret, not access_secret.


I also suggest adding this bit to the top of your script to let perl
help find potential errors:

    #!/usr/bin/perl
    use warnings;
    use strict;

        -Marc

-- 
Twitter developer documentation and resources: http://dev.twitter.com/doc
API updates via Twitter: http://twitter.com/twitterapi
Issues/Enhancements Tracker: http://code.google.com/p/twitter-api/issues/list
Change your membership to this group: 
http://groups.google.com/group/twitter-development-talk

Reply via email to