gpt4 book ai didi

r - Roadoi 中的 UseMethod ("http_error"错误

转载 作者:行者123 更新时间:2023-12-02 16:22:54 26 4
gpt4 key购买 nike

我正在尝试 roadoi 从 R 访问 Unpaywall,但无论我尝试查询什么,我都会收到以下响应:

Error in UseMethod("http_error") : no applicable method for 'http_error' applied to an object of class "c('simpleError', 'error', 'condition')"

运行 methods(http_error) 给我这个:

[1] http_error.character* http_error.integer*   http_error.response*

这可能是由于我位于机构防火墙后面造成的吗? (即便如此,这似乎很奇怪……)

有办法解决吗?

最佳答案

http_error(实际上来自库httr)是一个非常简单的函数:它加载由字符给出的 url (http_error.character ),检索响应 (http_error.response) 并最终查看响应代码 (http_error.integer)。如果响应代码为 >=400,则函数返回 TRUE,否则返回 FALSE

您的错误表明,您(或链中的任何函数)尝试在 simpleError 对象上调用 http_error 。我的猜测是您的防火墙设置阻止了该请求。由于请求被阻止,底层 httr::RETRY(从 oadoi_fetch 调用)返回错误而不是正确的响应对象,并且 http_error只看到这个错误对象并中断。

如果我在本地关闭我的代理(我可以通过它发出请求),我也会收到错误:

library(roadoi)
Sys.unsetenv(c("HTTP_PROXY", "HTTPS_PROXY"))
oadoi_fetch("10.1038/nature12373", email = "name@whatever.com")
# Error in UseMethod("http_error") :
# no applicable method for 'http_error' applied to an object of class
# "c('simpleError', 'error', 'condition')"

一旦我的代理设置正确,我就会得到

Sys.setenv(HTTPS_PROXY = my_proxy, HTTP_PROXY = my_proxy)
oadoi_fetch("10.1038/nature12373", email = "name@whatever.com")
# # A tibble: 1 x 16
# doi best_oa_location oa_locations data_standard is_oa genre journal_is_oa journal_is_in_d~ journal_issns journal_name publisher title year updated non_compliant authors
# <chr> <list> <list> <int> <lgl> <chr> <lgl> <lgl> <chr> <chr> <chr> <chr> <chr> <chr> <list> <list>
# 1 10.1038~ <tibble [1 x 10]> <tibble [4 x~ 2 TRUE journa~ FALSE FALSE 0028-0836,147~ Nature Springer ~ Nanometre-s~ 2013 2019-04-0~

如果问题确实出在代理上,我会尝试以下方法,这对我在公司 Windows 计算机上的操作有所帮助,但可能取决于您本地的 IT 设置:

## get the proxy settings
system("netsh winhttp show proxy")
Sys.setenv(HTTP_PROXY = <the proxy from netsh>, HTTPS_PROXY = <the proxy from netsh>)
<小时/>

实际上,您可以轻松地重现该错误:

httr::http_error(simpleError("Cannot reach the page"))
# Error in UseMethod("http_error") :
# no applicable method for 'http_error' applied to an object of class
# "c('simpleError', # 'error', 'condition')"

关于r - Roadoi 中的 UseMethod ("http_error"错误,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/55244646/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com