用例: 我想检索某人已参加/将要参加的过去/即将发生的所有事件。此人的搜索条件是他/她的电子邮件。
我正在查看Eventbrite API,但没有任何方法。但是,我想出了一种解决方法,这就是它的样子。
List all Events by Organization (https://www.eventbriteapi.com/v3/organizations/organization_id/events)
For each event
List all Attendees (https://www.eventbriteapi.com/v3/events/event_id/attendees)
For each attendee
if email is present (email is part of the attendee profile)
add event to event array
break
从理论上讲,我认为这会有效,尽管效率相对较低。还有其他更有效的方法吗?