我正在尝试使用以下格式的凭据登录Outlook:
登录ID:域/用户名
密码:xxx
当我使用交换服务API尝试以下代码时,出现连接超时异常。
fips <- read_html("https://www.census.gov/geo/reference/ansi_statetables.html") %>%
html_nodes("table") %>%
html_table() %>%
lapply(., mutate_if, is.integer, as.character) %>%
bind_rows() %>%
setNames(gsub(" ", "_", names(.))) %>%
filter(!grepl("Status", Area_Name)) %>%
mutate(Name = ifelse(is.na(Name), Area_Name, Name)) %>%
select(Name, FIPS_State_Numeric_Code, Official_USPS_Code)