Get the members from a meetup group
Usage
get_group_members(
urlname,
max_results = NULL,
handle_multiples = "list",
extra_graphql = NULL,
...
)
Arguments
- urlname
Character. The name of the group as indicated in the https://www.meetup.com/ url.
- max_results
Maximum number of results to return. If set to NULL, will return all available results (may take a long time).
- handle_multiples
Character. How to handle multiple matches. One of "list" or "first", or "error". If "list", return a list-column with all matches. If "first", return only the first match.
- extra_graphql
A graphql object. Extra objects to return
- ...
Should be empty. Used for parameter expansion
Examples
get_group_members("rladies-lagos")
#> Warning: Selecting ‘env’ backend. Secrets are stored in environment variables
#> Warning: Selecting ‘env’ backend. Secrets are stored in environment variables
#> # A tibble: 866 × 4
#> id name member_url member_photo_url
#> <chr> <chr> <chr> <chr>
#> 1 251470805 "R-Ladies Global" https://www.meetup.com… https://secure-…
#> 2 225839690 "EYITAYO ALIMI" https://www.meetup.com… https://secure-…
#> 3 236466773 "Adedamilola Adekanye" https://www.meetup.com… https://secure-…
#> 4 255806325 "Helen" https://www.meetup.com… https://secure-…
#> 5 287781170 "Alvin" https://www.meetup.com… https://secure-…
#> 6 266271010 "ijeoma benson" https://www.meetup.com… NA
#> 7 284993544 "Ochuko" https://www.meetup.com… https://secure-…
#> 8 249638660 "Folajimi Aroloye" https://www.meetup.com… https://secure-…
#> 9 287607204 "Olaniyi ayomide recheal " https://www.meetup.com… NA
#> 10 253986501 "Ofure Ughu" https://www.meetup.com… NA
#> # ℹ 856 more rows