Closed avcohen closed 4 years ago
My apologies, I was following a guide with incorrect info about where to find organizationId
and as a result was producing no results but a valid 200
response.
Should anyone have any issues getting results from the https://www.eventbriteapi.com/v3/organizations/organization_id/events/
endpoint, get your organization_id from the https://www.eventbriteapi.com/v3/users/me/
endpoint!
On line 16 of
gatsby-node.js
the plugin is combining the default entries of['events', 'venues']
with user specified values at the project root'sgatsby-config.js
.My API requests were working fine via the browser and looking into more detailed error messages from the promise caught error within
fetch.js
it would seemvenues
is not supported:Removing
venues
from the list does allow gatsby to compile but due to the fact that venues aren't fetched, no nodes are built because all events need to be linked to an associated venue via thelinkEventWithVenue
func withincreateNodeRelations.js
.