| Net-Backtype documentation | view source | Contained in the Net-Backtype distribution. |
Net::Backtype - client for the backtype API
version 0.03
use Net::Backtype; my $client = Net::Backtype->new(); my $res = $client->comments_page(url => 'http://...', key => $mykey);
Net::Backtype is a client for the backtype API
Search all the comments on BackType for a given string.
my $res = $client->comments_page(key => 's3kr3t', q => 'lumberjaph' );
Retrieve all conversations related to a given URL.
my $res = $client->comments_connect(key => 's3kr3t', url => 'lumberjaph');
Retrieve statistics on the conversations related to a given URL.
my $res = $client->comments_connect_stats(url => 'lumberjaph', key => 's3kr3t');
See http://www.backtype.com/developers/comments-connect-stats.
Retrieve comments written by a particular author.
my $res = $client->comments_author(url => 'lumberjaph', key => 's3kr3t');
Retrieve excerpts of comments published on a particular page.
my $res = $client->comments_page_stats(url => 'lumberjaph', key => 's3kr3t');
Retrieve statistics for the comments published on a particular page.
franck cuny <franck@lumberjaph.net>
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.
| Net-Backtype documentation | view source | Contained in the Net-Backtype distribution. |