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
The summary returned by the event data via event id shows up twice in the data.
It also takes place of the description therefore not providing a huge amount of event data to the user of the API and SDK.
Here is a script showcasing the bug:
fromeventbriteimportEventbritedefcreate_eventbrite_object(private_token):
returnEventbrite(oauth_token=private_token)
defget_event_data(eventbrite, event_id):
try:
event=eventbrite.get_event(event_id)
returneventexceptExceptionase:
print(
f"Could not get event data for event_id: {event_id}, due to exception: {e}"
)
returnNoneeventbrite=create_eventbrite_object("YOUR_PRIVATE_TOKEN") # add your eb private tokenevent_id=000000000000# add any event idevent_data=get_event_data(eventbrite, event_id)
print(event_data["description"]["text"])
print(event_data["summary"])
The text was updated successfully, but these errors were encountered:
The
summary
returned by the event data via event id shows up twice in the data.It also takes place of the
description
therefore not providing a huge amount of event data to the user of the API and SDK.Here is a script showcasing the bug:
The text was updated successfully, but these errors were encountered: