View source: R/search_eventbrite.R
search_eventbrite | R Documentation |
Retrieving events based on a search query. There are numerous parameters that can be used in the query. Possible parameters can be found here: https://www.eventbrite.com/platform/api#/reference/event-search/search-events. In order to give you more control, after running the command, it will display how many pages of data (each a maximum of 50 rows) and ask if you want to continue with the query.
search_eventbrite(query, ..., token = .Options$eventbrite.token)
query |
the search term to query on. The Eventbrite API looks for matches in an event's title. |
... |
see possible parameters here: https://www.eventbrite.com/platform/api#/reference/event-search/search-events. Use the same parameter names as found in the API documentation. |
token |
the API token needed to call the API. Go here to create your own app and get an API token: http://www.eventbrite.com/myaccount/apps/ |
A dataframe is returned of all events the meet the query parameters.
python_courses = search_eventbrite(query = "python", location.address="Melbourne", location.within="50km")
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.