Incorrect search filter: invalid characters - *.p[ml]
API-Facebook

 view release on metacpan or  search on metacpan

INSTALL  view on Meta::CPAN

Alternatively, if your CPAN shell is set up, you should just be able to do:

    % cpan API::Facebook

## Manual installation

As a last resort, you can manually install it. Download the tarball, untar it,
then build it:

    % perl Makefile.PL
    % make && make test

Then install it:

    % make install

If you are installing into a system-wide directory, you may need to run:

    % sudo make install

## Documentation

LICENSE  view on Meta::CPAN

OUT OF THE USE OR INABILITY TO USE THE PROGRAM (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 PROGRAM TO OPERATE WITH ANY OTHER
PROGRAMS), EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE
POSSIBILITY OF SUCH DAMAGES.

                     END OF TERMS AND CONDITIONS

        Appendix: How to Apply These Terms to Your New Programs

  If you develop a new program, and you want it to be of the greatest
possible use to humanity, the best way to achieve this is to make it
free software which everyone can redistribute and change under these
terms.

  To do so, attach the following notices to the program.  It is safest to
attach them to the start of each source file to most effectively convey
the exclusion of warranty; and each file should have at least the
"copyright" line and a pointer to where the full notice is found.

    <one line to give the program's name and a brief idea of what it does.>

META.json  view on Meta::CPAN

         }
      },
      "runtime" : {
         "requires" : {
            "API::Client" : "0.03",
            "Data::Object" : "0.57",
            "Mojolicious" : "6.22",
            "perl" : "v5.14.0"
         }
      },
      "test" : {
         "requires" : {
            "perl" : "v5.14.0"
         }
      }
   },
   "release_status" : "stable",
   "resources" : {
      "bugtracker" : {
         "web" : "https://github.com/alnewkirk/API-Facebook/issues"
      },

Makefile.PL  view on Meta::CPAN

  "EXE_FILES" => [],
  "LICENSE" => "perl",
  "MIN_PERL_VERSION" => "5.014000",
  "NAME" => "API::Facebook",
  "PREREQ_PM" => {
    "API::Client" => "0.03",
    "Data::Object" => "0.57",
    "Mojolicious" => "6.22"
  },
  "VERSION" => "0.04",
  "test" => {
    "TESTS" => "t/*.t"
  }
);


my %FallbackPrereqs = (
  "API::Client" => "0.03",
  "Data::Object" => "0.57",
  "ExtUtils::MakeMaker" => 0,
  "Mojolicious" => "6.22"

cpanfile  view on Meta::CPAN

requires "API::Client" => "0.03";
requires "Data::Object" => "0.57";
requires "Mojolicious" => "6.22";
requires "perl" => "v5.14.0";

on 'test' => sub {
  requires "perl" => "v5.14.0";
};

on 'configure' => sub {
  requires "ExtUtils::MakeMaker" => "0";
};

t/main.t  view on Meta::CPAN

use Test::More;

use_ok 'API::Facebook';

ok 1 and done_testing;



( run in 0.463 second using v1.01-cache-2.11-cpan-3cd7ad12f66 )