Join GitHub today
GitHub is home to over 20 million developers working together to host and review code, manage projects, and build software together.
publish Eventbrite events #275
Comments
snarfed
added
the
publish
label
Aug 30, 2014
|
thanks for the details! |
|
Would also be useful to be able to use Bridgy Publish to POSSE an RSVP to an Eventbrite event (e.g. real world example http://tantek.com/2015/266/t1/science-hack-day-san-francisco-sign-up ) - opening separate issue for that. |
snarfed
added
new silo
and removed
publish
labels
Nov 2, 2015
|
if anyone's interested in tackling this, i've written up comprehensive instructions on how to add a new silo to bridgy. feel free to jump in! |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
tantek commentedAug 30, 2014
Since FB API doesn't support event publishing (See #274 ) perhaps make it possible to publish Eventbrite events as another POSSE destination.
People in general seem to respond well to Eventbrite invitations, so this may solve some of the same use-case(s) as POSSE event to FB.
https://www.eventbrite.com/developer/v3/endpoints/events/#ebapi-post-events
Rough idea of how data could be copied from an indie event:
title: h-event p-name
description: h-event p-description
start_date: h-event dt-start
end_date: h-event dt-end
timezone: extract from h-event dt-start, or if none, then perhaps use https://github.com/esripdx/Timezone-API to extract timezone from location
privacy: 1 (presumably only public events for now)
personalized_url: perhaps convert the original event's URL to a URL-safe string for an event? e.g snarfed-org-event-1.eventbrite.com
venue_id: result of calling http://developer.eventbrite.com/doc/events/event_new/venue_new which should use the h-event's p-location h-card
organizer_id: result of calling http://developer.eventbrite.com/doc/events/event_new/organizer_new which should use the h-event's p-organizer h-card
I think those are the key fields, the rest we can incrementally figure out as we go.