我試圖獲得使用httr庫的超過100個站點的狀態,但我不斷收到此錯誤:錯誤x%||%list():參數「p」丟失,沒有默認設置
Error in x %||% list() : argument "p" is missing, with no default.
我有一個包含所有站點名稱的數據框。這是給我的錯誤線
for(i in names)
{
if(i != "")
{
URL <- GET(paste("http://",i,"", sep = ""),set_config(config(ssl_verifypeer = 0L)),timeout(500))
if(status_code(URL) == "200")
{
r <- "Active"
}
else
{
r <- "Not active"
}
r
print(paste(i,r))
all_stat <- rbind(all_stat,r)
}
}