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

NAME

WWW::Shorten::Bitly - Interface to shortening URLs using http://bitly.com

VERSION

$Revision: 1.17 $

SYNOPSIS

WWW::Shorten::Bitly provides an easy interface for shortening URLs using http://bitly.com. In addition to shortening URLs, you can pull statistics that bitly.com gathers regarding each shortened WWW::Shorten::Bitly uses XML::Simple to convert the xml response and JSON::Any to convert JSON responses for the meta info and click stats to create a hashref of the results.

WWW::Shorten::Bitly provides two interfaces. The first is the common makeashorterlink and makealongerlink that WWW::Shorten provides. However, due to the way the bitly.com API works, additional arguments are required. The second provides a better way of retrieving additional information and statistics about a bitly.com URL.

use WWW::Shorten::Bitly;

my $url = "http://www.example.com";

my $tmp = makeashorterlink($url, 'MY_BITLY_USERNAME', 'MY_BITLY_API_KEY'); my $tmp1 = makealongerlink($tmp, 'MY_BITLY_USERNAME', 'MY_BITLY_API_KEY');

or

use WWW::Shorten::Bitly;

my $url = "http://www.example.com"; my $bitly = WWW::Shorten::Bitly->new(URL => $url, USER => "my_user_id", APIKEY => "my_api_key");

$bitly->shorten(URL => $url); print "shortened URL is $bitly->{bitlyurl}\n";

$bitly->expand(URL => $bitly->{bitlyurl}); print "expanded/original URL is $bitly->{longurl}\n";

my $info = $bitly->info(); say "Title of the page is " . $info->{title}; say "Created by " . $info->{created_by};

my $clicks = $bitly->clicks(); say "Total number of clicks received: " . $clicks->{user_clicks}; say "Total number of global clicks received are: " . $clicks->{global_clicks};

Please remember to check out http://code.google.com/p/bitly-api/wiki/ApiDocumentation#/v3/info for more details on V3 of the Bitly.com API

FUNCTIONS

new

Create a new bitly.com object using your bitly.com user id and bitly.com api key.

my $bitly = WWW::Shorten::Bitly->new(URL => "http://www.example.com/this_is_one_example.html", USER => "bitly_user_id", APIKEY => "bitly_api_key");

to use bitly.com's new j.mp service, just construct the bitly object like this: my $bitly = WWW::Shorten::Bitly->new(URL => "http://www.example.com/this_is_one_example.html", USER => "bitly_user_id", APIKEY => "bitly_api_key", jmp => 1);

The function makeashorterlink will call the bitly.com API site passing it your long URL and will return the shorter bitly.com version.

bitly.com requires the use of a user id and API key to shorten links.

j.mp is not currently supported for makeashorterlink

The function makealongerlink does the reverse. makealongerlink will accept as an argument either the full bitly.com URL or just the bitly.com identifier. bitly.com requires the use of a user name and API Key when using the API.

If anything goes wrong, then the function will return undef.

j.mp is not currently supported for makealongerlink

shorten

Shorten a URL using http://bitly.com. Calling the shorten method will return the shortened URL but will also store it in bitly.com object until the next call is made.

my $url = "http://www.example.com"; my $shortstuff = $bitly->shorten(URL => $url);

print "biturl is " . $bitly->{bitlyurl} . "\n"; or print "biturl is $shortstuff\n";

expand

Expands a shortened bitly.com URL to the original long URL.

info

Get info about a shortened bitly.com URL. By default, the method will use the value that's stored in $bitly->{bitlyurl}. To be sure you're getting info on the correct URL, it's a good idea to set this value before getting any info on it.

$bitly->{bitlyurl} = "http://bitly.com/jmv6"; my $info = $bitly->info();

say "Title of the page is " . $info->{title}; say "Created by " . $info->{created_by};

clicks

Get click thru information for a shortened bitly.com URL. By default, the method will use the value that's stored in $bitly->{bitlyurl}. To be sure you're getting info on the correct URL, it's a good idea to set this value before getting any info on it.

$bitly->{bitlyurl} = "http://bitly.com/jmv6"; my $clicks = $bitly->clicks();

say "Total number of clicks received: " . $clicks->{user_clicks}; say "Total number of global clicks received are: " . $clicks->{global_clicks};

errors

version

Gets the module version number

referrers

Returns an array of hashes

my @ref = $bitly->referrers(); say "Referrers for " . $bitly->{bitlyurl}; foreach my $r (@ref) { foreach my $f (@{$r}) { say $f->{clicks} . ' from ' . $f->{referrer}; } }

countries {

Returns an array of hashesh

my @countries = $bitly->countries(); foreach my $r (@countries) { foreach my $f (@{$r}) { say $f->{clicks} . ' from ' . $f->{country}; } }

clicks_by_day {

Returns an array of hashes

my @c = $bitly->clicks_by_day(); say "Clicks by Day for " . $bitly->{bitlyurl}; foreach my $r (@c) { foreach my $f (@{$r}) { say $f->{clicks} . ' on ' . $f->{day_start}; } }

day_start is the timecode as specified by Bitly.com. You can use the following to turn it into a DateTime Object

use DateTime; $dt = DateTime->from_epoch( epoch => $epoch );

qr_code

Returns the URL for the QR Code

validate

For any given a bitly user login and apiKey, you can validate that the pair is active.

bitly_pro_domain

Will return true or false whether the URL specified is a Bitly Pro Domain

my $bpd = $bitly->bitly_pro_domain(url => 'http://nyti.ms'); say "This is a Bitly Pro Domain: " . $bpd;

my $bpd2 = $bitly->bitly_pro_domain(url => 'http://example.com'); say "This is a Bitly Pro Domain: " . $bpd2;

lookup

clicks_by_minute

This part of the Bitly APi isn't being implemented because it's virtually impossible to know exactly which minute a clicks is attributed to. ya know, network lag, etc. I'll implement this when Bitly puts some sort of a time code into the results.

FILES

$HOME/.bitly or _bitly on Windows Systems.

You may omit USER and APIKEY in the constructor if you set them in the .bitly config file on separate lines using the syntax:

USER=username APIKEY=apikey

AUTHOR

Pankaj Jain, <pjain at cpan.org>

BUGS

Please report any bugs or feature requests to bug-www-shorten-bitly at rt.cpan.org, or through the web interface at http://rt.cpan.org/NoAuth/ReportBug.html?Queue=WWW-Shorten-Bitly. I will be notified, and then you'll automatically be notified of progress on your bug as I make changes.

SUPPORT

You can find documentation for this module with the perldoc command.

perldoc WWW::Shorten::Bitly

You can also look for information at:

ACKNOWLEDGEMENTS

http://bitly.com for a wonderful service.
Larry Wall, Damian Conway, and all the amazing folks giving us Perl and continuing to work on it over the years.
Mizar, <mizar.jp@gmail.com>, Peter Edwards, <pedwards@cpan.org >>, Joerg Meltzer, <joerg@joergmeltzer.de> for great patches.
Thai Thanh Nguyen, <thai@thaiandhien.com> for patches to support the Bitly.com v3 API

COPYRIGHT & LICENSE

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

DISCLAIMER OF WARRANTY

BECAUSE THIS SOFTWARE IS LICENSED FREE OF CHARGE, THERE IS NO WARRANTY FOR THE SOFTWARE, TO THE EXTENT PERMITTED BY APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR OTHER PARTIES PROVIDE THE SOFTWARE "AS IS" WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE SOFTWARE IS WITH YOU. SHOULD THE SOFTWARE PROVE DEFECTIVE, YOU ASSUME THE COST OF ALL NECESSARY SERVICING, REPAIR, OR CORRECTION.

IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY AND/OR REDISTRIBUTE THE SOFTWARE AS PERMITTED BY THE ABOVE LICENCE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE USE OR INABILITY TO USE THE SOFTWARE (INCLUDING BUT NOT LIMITED TO LOSS OF DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD PARTIES OR A FAILURE OF THE SOFTWARE TO OPERATE WITH ANY OTHER SOFTWARE), EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES.

SEE ALSO

perl, WWW::Shorten, http://bitly.com.