-
Notifications
You must be signed in to change notification settings - Fork 15
Meetupmembers
This object handles interaction with the members 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 members of groups fitting the given parameters.
The getMembers() 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/members/
at least one of the following parameters is required
- group_id
- group_urlname
- member_id
- service
- topic,groupnum
$m = new MeetupMembers();
$members = $m->getMembers( array( 'group_id' => '1708069' ));
print_r($members);
Returns the specified user information
The getMember() 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/member/#get
If no $Parameters are used the current user's information will be returned
$m = new MeetupMembers();
$member = $m->getMember( '14508967' );
print_r($member);
Returns the specified user information
The getProfiles() 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/member/#get
at least one of the following parameters is required
- group_id
- group_urlname
- topic,groupnum
$m = new MeetupMembers();
$profiles = $m->getProfiles( array( 'group_id' => '1708069' ));
print_r($profiles);
To conform to the full Meetup API spec the following changes are required:
- Support POST