R从受密码保护的网站截图
Posted
技术标签:
【中文标题】R从受密码保护的网站截图【英文标题】:R taking screenshots from password-protected website 【发布时间】:2021-11-30 16:47:17 【问题描述】:我正在尝试编写一组 R 代码来从受密码保护的网站截取屏幕截图。
我曾尝试使用 webshot
和 httr
软件包,但无法找到解决方案。
以下是我尝试过的代码。
library(httr)
library(webshot)
handle <- handle("url of the home page")
path <- "url of login page"
login <- list(username = "my username", password = "my password", redirect_url = "url of the page that I want to screenshot")
response <- POST(handle = handle, path = path, body = login)
webshot("url of the page that I want to screenshot", "screenshot.png")
截图显示的是登录页面,而不是我要截图的页面。这意味着在截屏之前该网站尚未登录。谁能帮帮我?
【问题讨论】:
当问题似乎是寻求帮助以解决违反 TOS 或破坏版权或访问专有数据的问题时,通常会犹豫。 【参考方案1】:您可以使用 RSelenium 包轻松完成此操作。这允许您填写用户名和密码,并且还具有截屏功能,可以截取网页并将其保存到磁盘。
【讨论】:
您的答案可以通过额外的支持信息得到改进。请edit 添加更多详细信息,例如引用或文档,以便其他人可以确认您的答案是正确的。你可以找到更多关于如何写好答案的信息in the help center。以上是关于R从受密码保护的网站截图的主要内容,如果未能解决你的问题,请参考以下文章