标签: r rvest
我需要下载人们在Facebook帖子中上传的所有图像。目前,下面是我的代码,但没有下载。
library(rvest) url <- "https://www.facebook.com/Babydestination/posts/a.922178127847257/1877466695651724/" imgsrc <- read_html(url) %>% html_node(css = '._50z9') %>% html_attr('src')