Meetup-API-client-for-PHP
Meetup-API-client-for-PHP copied to clipboard
Pure PHP client for the Meetup API
//after connection code. // based on zip it's working // $events = $m->getOpenEvents( array( 'country' => 'IN' )); //output Uncaught MeetupBadRequestException: 400 HTTP Error: Error bad request to https://api.meetup.com/2/open_events?country=IN&key=38607943f1a7b5e7116726c7c5b32b&Details: Perhaps...
Hello, I have an issue with this library, I'm requesting information about a meetup group which description is in spanish language which contains some characters like: `á, é, í, ó,...
here attach my code and download u r project file try yo run i am getting Null Value? what mistake is there my code ? thanks in advance
I'm getting an error message: Fatal error: Class 'MeetupKeyAuthConnection' not found in /users13/domains/lajagclub.com/users/jocla_dev/ftp/web/tryPHPClient.php on line 4 Here is my test code for trying out the client: I unzipped the files...
i am download code Meet-Api-Client-for-php and i am created index.php then finally run the i got error.. here post my code and error: Error: Fatal error: Class 'MeetupKeyAuthConnection' not found...
I've downloaded your files into a directory meetupapi, and set up my auth key in the config file. I try out the following basic script ..and i just get the...
you mention query in your notes, but it was missing from the source.
It is useful to search groups by topic, so I've added `topic` to the array of available required parameters. This is one of the supported parameters as defined here: http://www.meetup.com/meetup_api/docs/2/groups/.
The Meetup API limits page size to 200 so I need step page by page to get all events. Here's a snipit of my code: $page_size = 20; $page_offset =...
Have you ever thought of looking at building this on top of Guzzle? (http://guzzlephp.org/) It would simplify your library to just mapping out the methods, give you POST support and...