eventbrite

Eventbrite API list events 403

强颜欢笑 提交于 2020-12-05 12:16:30
问题 I'm trying to fetch events base on time from Eventbrite API with the following command from the docs curl -X GET https://www.eventbriteapi.com/v3/events/search?date_modified.range_start=2018-01-01T00:00:01Z -H 'Authorization: Bearer MY_API_TOKEN' However, it returns me 403 with the following HTML in response body: <html lang="en"> <head> <title>Whoops!</title> </head> <body> <div id="whoops_wrapper"> <img id="logo" src="https://cdn.evbstatic.com/s3-s3/static/images/django/logos/eb_home_stroke

HttpClient returns 401 with correct authorisation header

亡梦爱人 提交于 2020-08-08 21:12:45
问题 I have been trying for a while now to consume the eventbrite api with vb.net, I am using the HttpClient to consume the api however it only returns a HTTP 401 Unathorised when I call the same method with the same headers using postman it returns the expected response with a HTTP 200 OK VB.Net Dim objClient As New HttpClient() objClient.BaseAddress = New Uri("https://www.eventbriteapi.com/v3/") objClient.DefaultRequestHeaders.Authorization = New AuthenticationHeaderValue("Bearer",

HttpClient returns 401 with correct authorisation header

邮差的信 提交于 2020-08-08 21:03:15
问题 I have been trying for a while now to consume the eventbrite api with vb.net, I am using the HttpClient to consume the api however it only returns a HTTP 401 Unathorised when I call the same method with the same headers using postman it returns the expected response with a HTTP 200 OK VB.Net Dim objClient As New HttpClient() objClient.BaseAddress = New Uri("https://www.eventbriteapi.com/v3/") objClient.DefaultRequestHeaders.Authorization = New AuthenticationHeaderValue("Bearer",

Eventbrite authentication using OAuth2.0 Rails

萝らか妹 提交于 2020-01-24 19:54:12
问题 Iam creating an application where I am trying to authentivate a user with eventbrite. With reference of doc I include the javascript in my application and it generates a CONNECT WITH EVENTBRITE link in my app. When I click this button It takes me to the url: https://www.eventbrite.com/oauth/authorize?response_type=token&client_id=xxxxxxxxxxxx (Here client id is the eventbrite app key of my application.) When the user ALLOWS the application to access the evenbrite account it redirects me to my

Eventbrite tags

橙三吉。 提交于 2020-01-02 05:26:08
问题 The EventBrite API is great but there are a couple of really simple features that would make it much better. In particular, does anyone know a way to update the tags property of an event (or set it on a new event) - I can't see it on the API method http://developer.eventbrite.com/doc/events/event_update/ but'tags' is available in the response from get_event so am I just missing something. If this just hasn't been exposed through event_update yet it would be fantastic to get that implemented.

Pass Eventbrite attendee parameters to custom order confirmation page via redirect URL

若如初见. 提交于 2019-12-22 06:55:18
问题 Is there a way to provide parameters to the redirect URL in the Eventbrite order confirmation workflow? I'd like to forward the attendee ID / order ID (or comma-separated IDs) to my custom page as parameters, so I could perform a lookup and display customized information relevant to that attendee. With a static redirect URL, everyone sees the same 'order confirmation page', with no personalization. What I'm trying to do is generate an itinerary for each attendee. When they purchase their

How to show future events with organizer_list_events on the EventBrite API

对着背影说爱祢 提交于 2019-12-12 03:55:57
问题 I always get ended events from the eventBrite api when i use the organizer_list_events. I tried with statuses live, started (and both). But that doesn't seem to work. The event_search api has a "date:Future" possibility. Which is working fine, but then I don't have a possibility to pass the organiserId. 回答1: Note, I work on the platform team at Eventbrite organizer_list_events does not accept a status parameter: http://developer.eventbrite.com/doc/organizers/organizer_list_events/ However,

Secure Way of storing Passwords to APIs without OpenID?

做~自己de王妃 提交于 2019-12-11 09:56:50
问题 I asked a similar question here a while back but all the answers were offering OpenID which is nice but it doesn't work with services that require authentication that don't use it (such as EventBrite). Say I want to create an app that lists your events from event brite, and their analytics (which eventbrite includes). Any person can sign up for this service to list their events. But since EventBrite doesn't have OpenID to authenticate, I need to somehow get the user login and password to

Are there any callbacks available in the eventbrite api?

*爱你&永不变心* 提交于 2019-12-11 00:19:26
问题 I would like to update a meeting as more people RSVP for the meeting. Currently I do not see any place to enter a callback URL for when attendees RSVP. Thanks. 回答1: Great suggestion! Eventbrite does not currently allow a callback url or web hook to be configured, exposing this type of activity. However, you might be able to build this kind of notification system by placing a tracking pixel (or some similar web asset) on the event's order confirmation page. If you can detect the HTTP referrer

Eventbrite API doesn't expand attendees

梦想的初衷 提交于 2019-12-10 15:32:23
问题 Using PHP to hook into the Eventbrite API Going to https://www.eventbriteapi.com/v3/users/me/owned_events/?token=XXX&expand=ticket_classes works and ticket_classes is expanded However when I use https://www.eventbriteapi.com/v3/users/me/owned_events/?token=XXX&expand=ticket_classes,attendees then attendees is not expanded but it shown under EXPANDED FIELDS Am I doing something obviously wrong? Thanks 回答1: You need to query the /events/{event_id}/attendees/ curl -X GET https://www