Nothing
#' Get number of items in a public Zotero group
#'
#' @param group The group ID
#'
#' @return The umber of items as a numeric vector.
#' @export
#'
#' @examples zotero_nr_of_items(2425237);
zotero_nr_of_items <- function(group) {
bibCon <- url(paste0("https://api.zotero.org/groups/", group, "/items?format=keys"));
keys<-readLines(bibCon, warn=FALSE);
close(bibCon);
return(length(keys));
}
Any scripts or data that you put into this service are public.
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.