-
Notifications
You must be signed in to change notification settings - Fork 15
Meetupcheckins
blobaugh edited this page Dec 26, 2011
·
2 revisions
This object handles interaction with the checkins 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 member checkins fitting the given parameters.
The getCheckins() 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/checkins/
at least one of the following parameters is required
- event_id
- group_id
- member_id
$m = new MeetupCheckins();
$checkins = $m->getCheckins( array( 'member_id' => '14508967' ));
foreach($checkins AS $c) {
echo $c['member_name'] . " at " . $c['group_id'] . "<br/>";
}
To conform to the full Meetup API spec the following changes are required:
- Support POST with postCheckin() to allow user check-ins from the application