eventbrite-sdk-ruby
eventbrite-sdk-ruby copied to clipboard
Official Ruby SDK for the Eventbrite v3 API
In the REST api documentation there is this endpoint: https://www.eventbrite.com/platform/api#/reference/event/list-events-by-venue Which allows the client to list events by venue. Am I incorrect in thinking that this features does not to...
Using `EventbriteSDK` in a threaded environment does not work because `EventbriteSDK.token` is `nil` inside child threads. This is because the token is stored in a [thread local var](https://github.com/eventbrite/eventbrite-sdk-ruby/blob/master/lib/eventbrite_sdk.rb#L67-L73) which is...
The readme contains example of how to fetch `user.owned_events`, but this is recently deprecated and no longer returns event. This PR updates the docs to demo how to fetch events...
I am building a rails application using the 'eventbrite_sdk' gem. I am able to retrieve my user account but the owned_events property is not available on the user object as...
I just realized that following command returns 1, instead of the real total pages count: ``` EventbriteSDK::Event.retrieve(id: EVENT_ID).attendees.page_count => 1 ``` whereas it should be higher? When I query then...
Are there any plans to update this gem to use the Organization object as many of the old endpoints will be deprecated shortly? Thanks! https://www.eventbrite.com/platform/docs/changelog Legacy | New -- |...
Hi All, Appreciate this isn't the most helpful issue, but wanted to know if this project is dead ? I'm using the SDK for a project at the moment but...