You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Afteru running vagrant up, adding my personal meetup key to parameters.yml and opening the browser (app_dev.php):
In /src/AmsterdamPHP/Bundle/SiteBundle/Controller/DefaultController.php the past events are fetched. In /src/AmsterdamPHP/Bundle/MeetupBundle/Service/EventService.php you can see that also fetches attendance:
I think the only solution here is to make the group_urlname parameter configurable to allow people to use sample groups to be able to get around that. It also prepares this for my future plan which is making all these bundles open source so every group can drop them into their website.
Afteru running vagrant up, adding my personal meetup key to parameters.yml and opening the browser (app_dev.php):
In /src/AmsterdamPHP/Bundle/SiteBundle/Controller/DefaultController.php the past events are fetched. In /src/AmsterdamPHP/Bundle/MeetupBundle/Service/EventService.php you can see that also fetches attendance:
lines: 110 - 113
$map = function ($event) {
$event['attendance'] = $this->getEventAttendance($event['id']);
return $event;
};
But that results in:
Client error response
[status code] 400
[reason phrase] Bad Request
[url] http://api.meetup.com/amsterdamphp/events/dhjvxgyrpbcc/attendance?filter=attended&key=[my-personal-key-here]
In the log /dev/shm/prod.log:
[2013-12-14 00:27:56] request.CRITICAL: Uncaught PHP Exception Guzzle\Http\Exception\ClientErrorResponseException: "Client error response
[status code] 401
[reason phrase] Unauthorized
etc...
The text was updated successfully, but these errors were encountered: