We aggregate webinar announcements tweeted by partner organizations. These are free events that anyone can attend. We want to build and maintain a calendar. All we have is the Register URL for each meeting.
I registered a JWT app and tried to send a Test Request to “get” a webinar, but I do not have the numeric meetingId. There’s a meeting_number in the page HTML
<input type="hidden" id="meeting_number" value="83339421571" />
but no meeting_id:
<input type="hidden" id="meeting_id" value="" />
The most basic information about the webinars is contained right on the Webinar Registration page - the title and start time - and we could scrape it I guess, but I really need a little more: the duration, name of the organizer, etc.
What would be a way forward for this simple project?
Thanks for any advice!