The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.

NAME

Net::Backtweet - client for the backtweet API

VERSION

version 0.03

SYNOPSIS

  use Net::Backtweet;
  my $client = Net::Backtweet->new();
  my $res = $client->tweets_by_url(q => 'lumberjaph', key => 's3kr3t');

DESCRIPTION

Net::Backtype is a client for the backtweet API.

METHODS

tweets_by_url

Retrieve the number of tweets that link to a particular URL.

    my $tweets = $client->tweets_by_url(q => 'lumberjaph', key => 's3kr3t');
q query (required)
key API key (required)
itemsperpage number of items per page (optional)
start date start (optional)
end date end (optional)

See http://www.backtype.com/developers/tweets-by-url.

stats_by_url

Retrieve the number of tweets that link to a particular URL.

    my $stats = $client->stats_by_url(q => 'lumberjaph', key => 's3kr3t');
q query (required)
key API key (required)

See http://www.backtype.com/developers/tweet-count.

good_tweets_by_url

Retrieve filtered tweets that link to a given URL with both shortened and unshortened links. This returns a subset of Tweets by URL.

    my $good = $client->good_tweets_by_url(q => 'lumberjaph', key => 's3kr3t');
q query (required)
key API key (required)

See http://www.backtype.com/developers/good-tweets.

See http://backtweets.com/api for more information about the backtweets API.

AUTHOR

  franck cuny <franck@lumberjaph.net>

COPYRIGHT AND LICENSE

This software is copyright (c) 2010 by linkfluence.

This is free software; you can redistribute it and/or modify it under the same terms as the Perl 5 programming language system itself.