Skip to content

Instantly share code, notes, and snippets.

@gadenbuie
Created August 3, 2018 14:36
Show Gist options
  • Save gadenbuie/ac78129a964dd0fff915f33d1e7781b9 to your computer and use it in GitHub Desktop.
Save gadenbuie/ac78129a964dd0fff915f33d1e7781b9 to your computer and use it in GitHub Desktop.
url_git_io <- function(url) {
if (!requireNamespace("curl", quietly = TRUE)) return(url)
h <- curl::new_handle()
curl::handle_setform(h, url = url)
r <- curl::curl_fetch_memory("https://git.io", h)
if (!r$status %in% 200:203) return(url)
curl::parse_headers_list(r$headers)$location
}
# https://git.io/fNiD6
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment