Learn R Programming

meetupapi (version 0.1.0)

get_meetup_events: 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

Run this code
# NOT RUN {
get_meetup_events("R-Users-Sydney", "your_api_key")
# }
# NOT RUN {
# }

Run the code above in your browser using DataLab