I'm trying to scrape the links off of this website
library(rvest)
library(tidyverse)
url=read_html('https://web.archive.org/web/*/https://www.bjjcompsystem.com/tournaments/1869/categories*')
get_links <- url %>%
html_nodes('#resultsUrl a') %>%
html_attr('href') %>%
paste0('https://web.archive.org/web/20220000000000*/', .)
get_links
But all I get is character(0). I even tried looking for the li class as has been suggested to me before, but there is nothing useful.
Can someone explain what I'm doing wrong and how to fix it?