The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.

NAME

Meetup::API - interface to the Meetup API

SYNOPSIS

  use Meetup::API;
  my $meetup = Meetup::API->new();
  my $events = $meetup->group_events($groupname)->get;

METHODS

Meetup::API->new %options

version

Allows you to specify the API version. The current default is v3, which corresponds to the Meetup API version 3 as documented at http://www.meetup.com/en-EN/meetup_api/docs/.

SETUP

0. Register with meetup.com
2. Visit https://secure.meetup.com/de-DE/meetup_api/key/ to get the API key
4. Create a JSON file named meetup.credentials

This file should live in your home directory with the API key:

    {
      "applicationKey": ".............."
    }

SEE ALSO

Meetup::API::v3

REPOSITORY

The public repository of this module is https://github.com/Corion/Meetup-API.

SUPPORT

The public support forum of this module is https://perlmonks.org/.

KNOWN ISSUES

When Chrome is run in headless mode, Chrome throws a Lost UI shared context error. This error can be ignored and does not affect the operation of this module.

AUTHOR

Max Maischein corion@cpan.org

COPYRIGHT (c)

Copyright 2016-2018 by Max Maischein corion@cpan.org.

LICENSE

This module is released under the same terms as Perl itself.