I'm having trouble using the EventBrite API. The following code is currently outputting the title, date, time and location. However it's giving all events ever created by that organiser.
I've tried experimenting with other params on organizer_list_events to no avail.
The example code is from here: http://developer.eventbrite.com/doc/widgets/#list
jQuery(document).ready(function(){
Eventbrite({'app_key': "XKPRFJAIRCOM5IB4KK"}, function(eb){
var eb_options = {
'id' : 2164293743
};
eb.organizer_list_events( eb_options, function( response ){
var eventbrite_list = eb.utils.eventList( response, eb.utils.eventListRow );
jQuery("#eventbrite-list").html(eventbrite_list);
console.log(response);
});
});
});
Thanks