R/auto_app_bsky_labeler.R

Defines functions app_bsky_labeler_get_services

#' app_bsky_labeler_get_services
#' Get information about a list of labeler services.
#' @noRd
app_bsky_labeler_get_services <- function(
  dids,
  detailed = NULL,
  .token = NULL,
  .return = c("json", "resp")
) {
  make_request(
    name = "bsky.social/xrpc/app.bsky.labeler.getServices",
    params = as.list(match.call())[-1] |>
      purrr::imap(
        ~ {
          eval(.x, envir = parent.frame())
        }
      ),
    req_method = "GET"
  )
}

Try the atrrr package in your browser

Any scripts or data that you put into this service are public.

atrrr documentation built on June 7, 2026, 1:06 a.m.