Nothing
#' Retrieve relationships for a URL
#'
#' @param url_id URL or URL ID from VirusTotal
#' @param relationship Type of relationship. See VirusTotal docs for options.
#' @param limit Number of relationships to retrieve. Optional.
#' @param cursor String for pagination. Optional.
#' @param \dots Additional arguments passed to \code{\link{virustotal_GET}}.
#'
#' @return list containing URL relationships
#'
#' @export
#'
#' @references \url{https://docs.virustotal.com/reference}
#'
#' @seealso \code{\link{set_key}} for setting the API key
#'
#' @examples \dontrun{
#'
#' # Before calling the function, set the API key using set_key('api_key_here')
#'
#' get_url_relationships(url_id='http://www.google.com',
#' relationship='communicating_files')
#' }
get_url_relationships <- function(url_id = NULL, relationship = NULL,
limit = NULL, cursor = NULL, ...) {
assert_character(url_id, len = 1, any.missing = FALSE, min.chars = 1)
assert_character(relationship, len = 1, any.missing = FALSE, min.chars = 1)
valid_relationships <- c(
"communicating_files", "downloaded_files", "graphs",
"last_serving_ip_address", "network_location",
"redirecting_urls", "redirects_to", "referrer_urls",
"submissions"
)
if (!relationship %in% valid_relationships) {
stop("Invalid relationship type. Must be one of: ",
paste(valid_relationships, collapse = ", "), "\n")
}
if (grepl("^https?://", url_id)) {
url_id <- base64encode(charToRaw(url_id))
url_id <- gsub("=+$", "", url_id)
}
path <- paste0("urls/", url_id, "/relationships/", relationship)
res <- virustotal_GET(path = path,
query = list(limit = limit, cursor = cursor), ...)
res
}
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.