-
Notifications
You must be signed in to change notification settings - Fork 15
Meetupvenues
This object handles interaction with the venues grouping of Meetup API endpoints.
Please visit http://www.meetup.com/meetup_api/docs for more information about the checkin endpoints
The following methods are provided for developer use
Returns a listing of all open venues fitting the given parameters.
The getOpenVenues() method takes as a parameter an associative array of values to pass to the Meetup API.
All possible parameters as well as response values are listed at http://www.meetup.com/meetup_api/docs/2/open_venues/
at least one of the following parameters is required
- city
- country
- lat
- lon
- state
- text
- zip
$m = new MeetupVenues();
$venues = $m->getOpenVenues( array( 'zip' => '98310'));
print_r( $venues );
Returns a listing of all venues fitting the given parameters.
The getVenues() method takes as a parameter an associative array of values to pass to the Meetup API.
All possible parameters as well as response values are listed at http://www.meetup.com/meetup_api/docs/2/venues/
at least one of the following parameters is required
- event_id
- group_id
- group_urlname
- venue_id
$m = new MeetupVenues();
$venues = $m->getVenues( array( 'event_id' => $past_event_id));
print_r( $venues );