The pro functions only work if the querying users had a meetup pro account.

get_pro_groups(urlname, ..., extra_graphql = NULL, token = meetup_token())

get_pro_events(
  urlname,
  status = NULL,
  ...,
  extra_graphql = NULL,
  token = meetup_token()
)

Arguments

urlname

Character. The name of the group as indicated in the https://meetup.com url.

...

Should be empty. Used for parameter expansion

extra_graphql

A graphql object. Extra objects to return

token

Meetup token

status

Which status the events should have.

Value

A tibble with meetup pro information

Functions

  • get_pro_groups: retrieve groups in a pro network

  • get_pro_events: retrieve events from a pro network

Examples

if (FALSE) {
urlname <- "rladies"
members <- get_pro_groups(urlname)

past_events <- get_pro_events(urlname = urlname,
                      status = "PAST")
upcoming_events <- get_pro_events(urlname = urlname,
                      status = "UPCOMING")
all_events <- get_pro_events(urlname = urlname)
}