Group
Extension

Matches 1

WWW-Delicious-Simple ( A/AJ/AJCT/WWW-Delicious-Simple-0.02.tar.gz, AJCT, 2011; MetaCPAN )
WWW-Delicious-Simple/lib/WWW/Delicious/Simple.pm ( view source; MetaCPAN )
us API
package WWW::Delicious::Simple;


use strict;
use warnings;

use JSON;

my $API_BASE = 'http://feeds.delicious.com/v2/json/urlinfo/data?url=';


sub get_url_info {
    my ( $class, $args ) = @_
= $ua->get( $API_BASE . $args->{url} );

    if ( $response->is_success ) {
        return decode_json $response->content;
    }
    else {
        die $response->status_line;
    }
}


1;

__END__
=p
 portion, of the Delicious (V2) API.
Patches welcome to support more of the API.

Returns decoded json returned from the API.

Possibly very unstable; may have future backwards incompatible releases, 

Powered by Groonga
Maintained by Kenichi Ishigaki <ishigaki@cpan.org>. If you find anything, submit it on GitHub.