| WWW-Shorten-PunyURL documentation | view source | Contained in the WWW-Shorten-PunyURL distribution. |
WWW::Shorten::PunyURL - An interface to SAPO's URL shortening service
Version 0.03
PunyURL is a URL shortening service provided by SAPO (http://sapo.pt/). Given a URL, it replies with two versions of the short URL, one using Unicode and RFC3492-compliant (Punycode) and an ASCII-equivalent (lowercase).
You can also provide the shortened URL and get back the original one.
use WWW::Shorten::PunyURL;
my $punyurl = WWW::Shorten::PunyURL->new( url => $long );
$punyurl->shorten;
# or
my $punyurl = WWW::Shorten::PunyURL->new( url => $short );
$punyurl->long;
Optionally, you can give the constructor a timeout value (which defaults to 10 seconds):
my $punyurl = WWW::Shorten::PunyURL->new(
url => $long,
timeout => 5
);
* Write conditional network tests
* Report/fix bug in Regexp::Common::URI (doesn't handle Unicode) UNTIL THIS IS FIXED, REQUESTING THE URL CORRESPONDING TO A PUNYCODE SHORTENED ONE WILL BREAK HORRIBLY AND PROBABLY DESTROY THE WORLD. USE THE ASCII SHORT VERSION FOR NOW.
The service endpoint for PunyURL
This function will return the PunyURL corresponding to the original URL.
This function does the reverse, finding the long URL corresponding to a PunyURL.
Create a new WWW::Shorten::PunyURL object. Takes a string (containing a URL) as the argument (may also take an optional timeout, see SYNOPSIS):
my $punyurl = WWW::Shorten::PunyURL->new( $url );
Give it a long url and you will get two shortened URLs, one using Unicode and its equivalent in lowercase ASCII. Returns undef on failure.
my $result = $punyurl->shorten;
if ( $result ) {
print $punyurl->url, "is now:\n";
print "\t", $punyurl->puny, "\n";
print "\t", $punyurl->ascii, "\n";
print "\t", $punyurl->preview, "\n";
} else {
print STDERR "Error:\n";
print STDERR $punyurl->errstr, "(", $punyurl->error, "\n";
}
Given a short URL (that you previously got through shorten() or any other means), returns the original URL, or undef in case of failure.
$punyurl->long;
Pedro Figueiredo, <me at pedrofigueiredo.org>
Please report any bugs or feature requests to bug-www-shorten-punyurl at rt.cpan.org, or through the web interface at http://rt.cpan.org/NoAuth/ReportBug.html?Queue=WWW-Shorten-PunyURL. I will be notified, and then you'll automatically be notified of progress on your bug as I make changes.
You can find documentation for this module with the perldoc command.
perldoc WWW::Shorten::PunyURL
You can also look for information at:
http://rt.cpan.org/NoAuth/Bugs.html?Dist=WWW-Shorten-PunyURL
Copyright 2009 Pedro Figueiredo, all rights reserved.
This program is free software; you can redistribute it and/or modify it under the same terms as Perl itself.
| WWW-Shorten-PunyURL documentation | view source | Contained in the WWW-Shorten-PunyURL distribution. |