我正在尝试通过R从安全站点下载png
图像。
为了访问安全站点,我使用了运作良好的Rvest
。
到目前为止,我已经提取了png
图像的URL。
如何使用rvest下载此链接的图像?rvest
函数外部的函数由于没有权限而返回错误。
当前尝试
library(rvest)
uastring <- "Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36"
session <- html_session("https://url.png", user_agent(uastring))
form <- html_form(session)[[1]]
form <- set_values(form, username = "***", password="***", cookie_checkbox= TRUE)
session<-submit_form(session, form)
session2<-jump_to(session, "https://url.png")
## Status 200 using rvest, sucessfully accsessed page.
session
<session> https://url.png
Status: 200
Type: image/png
Size: 438935
## Using download.file returns status 403, page unable to open.
download.file("https://url.png", destfile = "t.png")
cannot open: HTTP status was '403 Forbidden'
在URL上尝试了
readPNG
和download.file
,由于没有经过许可从经过身份验证的安全站点下载(错误:403),因此两者均失败了,因此为什么我首先使用了rvest。 最佳答案
这是一个将R徽标下载到当前目录的示例。
library(rvest)
url <- "https://www.r-project.org"
imgsrc <- read_html(url) %>%
html_node(xpath = '//*/img') %>%
html_attr('src')
imgsrc
# [1] "/Rlogo.png"
# side-effect!
download.file(paste0(url, imgsrc), destfile = basename(imgsrc))
编辑
由于涉及身份验证,因此肯定需要Austin建议使用 session 。试试这个:
library(rvest)
library(httr)
sess <- html_session(url)
imgsrc <- sess %>%
read_html() %>%
html_node(xpath = '//*/img') %>%
html_attr('src')
img <- jump_to(sess, paste0(url, imgsrc))
# side-effect!
writeBin(img$response$content, basename(imgsrc))
关于R:使用rvest下载图片,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/36202414/