Skip to content

neo1ite/p5-Instagram-API

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

54 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

NAME

Instagram::API - Perl OO interface to Instagram without any authorization

Coverage Status

VERSION

version 0.01

SYNOPSIS

use Instagram::API;

my $instagram = Instagram::API->new();

my $user = $instagram->getAccount($username);
my $user = $instagram->getAccountById($userID);

my $medias = $instagram->getMedias($username, $count, $maxID);

for my $media ( @{$medias} ) {

        printf "Caption: %s\n", $media->{caption};
        printf "Posted by %s at %s (%d likes)\n\n", $media->user->{username}, $media->{created_time}, $media->{likes};

}

DESCRIPTION

The README is used to introduce the module and provide instructions on how to install the module, any machine dependencies it may have (for example C compilers and installed libraries) and any other information that should be provided before the module is installed.

A README file is required for CPAN modules since CPAN extracts the README file from a module distribution so that people browsing the archive can use it get an idea of the modules uses. It is usually a good idea to provide version information here so that people can decide whether fixes for the module are worth downloading.

INSTALLATION

To install this module type the following:

perl Makefile.PL
make
make test
make install

DEPENDENCIES

This module requires these other modules and libraries:

blah blah blah

AUTHOR

Sergey Kovalev <info@neolite.ru>

COPYRIGHT AND LICENCE

Copyright (C) 2017 by Sergey Kovalev

This program is free software; you can redistribute it and/or modify it under the terms of either: the GNU General Public License as published by the Free Software Foundation; or the Artistic License.

See http://dev.perl.org/licenses/ for more information.

About

Perl OO Interface to Instagram REST API without any authorization

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages