Image src使用rvest从Facebook Post刮痧

时间:2016-01-08 07:53:00

标签: r facebook facebook-graph-api rvest

我正在使用rvest软件包来抓取Facebook帖子并提取img src网址。

library(rvest)
UrlPage <- read_html ("https://www.facebook.com/AmazonIN/photos/a.142199085973905.1073741828.100281786832302/458742987652845/?type=3")
UrlPage %>% html_node("#fbPhotoImage")
  

错误:没有匹配

rvest包与其他网站一起使用,但似乎与Facebook存在一些问题。

还有其他方法可以在R中删除照片吗?

1 个答案:

答案 0 :(得分:0)

首先使用R

中的以下代码将html页面下载到本地系统中
download.file(url, destfile.html , quiet = FALSE, mode = "w",
          cacheOK = TRUE,
          extra = getOption("download.file.extra"))

然后给出本地路径来读取html页面,并刮掉图像。