NAME

ImgurAPI - Imgur API client

DESCRIPTION

This is a client module for interfacing with the Imgur API.

SYNOPSIS

use ImgurAPI;

my $client = ImgurAPI->new({
    'client_id'     => 'your_client_id',
    'client_secret' => 'your_client',
    'access_token'  => 'your_access_token'
});

my $upload = $client->image_upload("helloimgur.png", 'file', {title => 'title', description => 'desc'});
my $image_info = $client->image($upload->{'data'}->{'id'});

AUTHOR

Dillan Hildebrand

LICENSE

MIT

INSTALLATION

Manual install:

$ perl Makefile.PL
$ make
$ make install