get_meetup_events {meetupapi} | R Documentation |
Get Meetup Events
Description
This function retrieves all meetup events for a meetup. This is forced to be ordered in descending order and show both upcoming and past events, therefore 'status' and 'desc' should not be passed as named arguements to the '...' (dots) arguement.
Usage
get_meetup_events(urlname, key, fields = c("status", "id", "name"), ...)
Arguments
urlname |
string, URL name for the meetup. e.g 'R-Users-Sydney' |
key |
an API key from https://www.meetup.com/meetup_api/ |
fields |
a charcter vector of the fields to return |
... |
a named list where each element is a character vector for additional parameters e.g. 'list("omit" = c("member.photo", "member.event_context")' |
Value
data.frame of meetup events for a meetup.
Examples
## Not run:
get_meetup_events("R-Users-Sydney", "your_api_key")
## End(Not run)
[Package meetupapi version 0.1.0 Index]