Skip to content
blobaugh edited this page Dec 26, 2011 · 2 revisions

Meetup Feeds

This object handles interaction with the feeds grouping of Meetup API endpoints.

Please visit http://www.meetup.com/meetup_api/docs for more information about the feeds endpoints

Methods

The following methods are provided for developer use

getActivity( $Parameters )

Returns a listing of all member activity fitting the given parameters.

Parameters

The getActivity() 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/activity/

If no parameters are passed the response will contain the feed for the current user

Example usage

$m = new MeetupCheckins();
$feed = $m->getActivity();

print_r($feed);

Development Needed