meetup_pro: Meetup pro functions

meetup_proR Documentation

Meetup pro functions

Description

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

Usage

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

References

https://www.meetup.com/api/schema/#ProNetwork

Examples

## Not run: 
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)

## End(Not run)

rladies/meetupr documentation built on Nov. 18, 2022, 8:14 a.m.