This function creates an httr2 OAuth client for the Meetup API. It uses environment variables or built-in credentials as fallback.
meetupr_client(
client_key = NULL,
client_secret = NULL,
client_name = get_client_name(),
...
)An httr2 OAuth client object.
Optional. The OAuth client ID.
Optional. The OAuth client secret.
A string representing the name of the client. By
default, it is set to "meetupr" and retrieved from the
MEETUPR_CLIENT_NAME environment variable.
Additional arguments passed to httr2::oauth_client().