-
Notifications
You must be signed in to change notification settings - Fork 15
Meetuptopics
blobaugh edited this page Dec 26, 2011
·
2 revisions
This object handles interaction with the topics 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 topics fitting the given parameters.
The getTopics() 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/topics/
$m = new MeetupTopics();
$topics = $m->getTopics( array( 'search' => 'wordpress'));
print_r($topics);