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'
);
- stats_by_url
-
Retrieve the number of tweets that link to a particular URL.
my
$stats
=
$client
->stats_by_url(
q =>
'lumberjaph'
,
key
=>
's3kr3t'
);
- 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'
);
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.