- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
这些 Curl 文档:http://curl.haxx.se/docs/manpage.html#-d列出许多 bool 选项。
如何在 RCurl 的 postForm 调用中指定这些选项?例如,如何指定 --sslv3 标志?
我试过了
postForm(url, .opts = list(sslv3=TRUE))
但收到错误:
Warning message:
In mapCurlOptNames(names(.els), asNames = TRUE) :
Unrecognized CURL options: sslv3
提前致谢。
解决方案
通过一些尝试和错误,我发现这是可行的:
options(RCurlOptions = list(sslversion=3))
postForm(url)
如果有人能澄清如何将 Curl 选项转换为 RCurl 选项,我们将不胜感激!
最佳答案
Curl 代表一些东西 http://daniel.haxx.se/docs/curl-vs-libcurl.html 。这里的问题是您正在查看curl命令行工具的功能,而不是想询问libcurl库如何实现某些功能。
RCurl 使用 libcurl 库。这可以通过 api 访问。此处列出了 api 中使用的“符号”http://curl.haxx.se/libcurl/c/symbols-in-versions.html 。我们可以将它们与 RCurl
列出的选项进行比较:
library(RCurl)
cInfo <- getURL("http://curl.haxx.se/libcurl/c/symbols-in-versions.html")
cInfo <- unlist(strsplit(cInfo, "\n"))
cInfo <- cInfo[grep("CURLOPT_", cInfo)]
cInfo <- gsub("([^[\\s]]*)\\s.*", "\\1", cInfo)
cInfo <- gsub("CURLOPT_", "", cInfo)
cInfo <- tolower(gsub("_", ".", cInfo))
listCurlOptions()[!listCurlOptions()%in%cInfo]
从上面我们可以看到,所有 RCurl 选项都源自 libcurl api 符号。这 CURLOPT_
已删除_
替换为 .
并且字母被降级为小写。
接下来的问题是这些符号代表什么类型。我通常只看php 库文档来发现这一点。 http://php.net/manual/en/function.curl-setopt.php列表
CURLOPT_SSLVERSION The SSL version (2 or 3) to use. By default PHP will try to determine this itself, although in some cases this must be set manually.
作为整数类型。期望值 2 或 3。
或者您可以查看 curl_easy_setopt
手册页http://curl.haxx.se/libcurl/c/curl_easy_setopt.html .
CURLOPT_SSLVERSION
传递一个 long 参数来控制尝试使用的 SSL/TLS 版本。可用的选项有:
CURL_SSLVERSION_DEFAULT
默认操作。这将尝试找出远程 SSL 协议(protocol)版本,即 SSLv3 或 TLSv1(但不包括 SSLv2,它在 7.18.1 中默认被禁用)。
CURL_SSLVERSION_TLSv1
强制 TLSv1
CURL_SSLVERSION_SSLv2
强制 SSLv2
CURL_SSLVERSION_SSLv3
强制 SSLv3
它说我们需要传递一个长整型值 CURL_SSLVERSION_SSLv3
规定sslv3。CURL_SSLVERSION_SSLv3
的值是多少?我们可以检查RCurl:::SSLVERSION_SSLv3
> c(RCurl:::SSLVERSION_DEFAULT, RCurl:::SSLVERSION_TLSv1, RCurl:::SSLVERSION_SSLv2, RCurl:::SSLVERSION_SSLv3)
[1] 0 1 2 3
>
因此实际上 sslversion 的允许值为 0、1、2 或 3。
因此,这种情况下的困惑是由curl程序引起的,该程序可能使用libcurl api以二进制方式实现这一点。
因此在这种情况下使用此选项的正确方法是:
postForm(url, .opts = list(sslversion = 3))
or
postForm(url, .opts = list(sslv = 3))
您可以使用较短的 sslv
如.opts
被传递到mapCurlOptNames
这将使用 pmatch
查找sslversion
.
为了公平起见 RCurl
的作者http://www.omegahat.org/RCurl/philosophy.html 中对此进行了全部解释也位于/RCurl/inst/doc/philosophy.html
.摘录如下:
Each of these and what it controls is described in the libcurl man(ual) page for curl_easy_setopt and that is the authoritative documentation. Anything we provide here is merely repetition or additional explanation.
The names of the options require a slight explanation. These correspond to symbolic names in the C code of libcurl. For example, the option url in R corresponds to CURLOPT_URL in C. Firstly, uppercase letters are annoying to type and read, so we have mapped them to lower case letters in R. We have also removed the prefix "CURLOPT_" since we know the context in which they option names are being used. And lastly, any option names that have a _ (after we have removed the CURLOPT_ prefix) are changed to replace the '_' with a '.' so we can type them in R without having to quote them. For example, combining these three rules, "CURLOPT_URL" becomes url and CURLOPT_NETRC_FILE becomes netrc.file. That is the mapping scheme.
关于RCurl - bool 选项,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/17119449/
我有一个带有列的表提供者 implied(tiny int)(something like nullable bool) provi
我正在阅读 VideoFileWriter来自 AForge.Video.FFMPEG 的类(class)通过 ILSPY 组装(我很想看看特定方法是如何工作的)并发现了这个: public bool
这是我的完整代码... import 'package:flutter/cupertino.dart'; import 'package:flutter/material.dart'; import
我有一个输入 list类型 [Maybe SomeType]和一个谓词 p类型 SomeType -> Bool ,我想回答这个问题“谓词 p 是否适用于所有碰巧在输入中的 SomeType ?”。
使用 !!x 有什么区别吗?对比(bool)x ? 假设__STDC_VERSION__ >= 199901L和 #include 他们都保证结果是0吗?或 1 ,并且无论 x 的大小和值如何,都不
我正在编写一些 C++ 代码,我想调用两个函数(checkXDirty 和 checkYDirty),并返回 true如果任一返回 true。即使一个返回 true 我也需要评估两者,所以我的第一个想
我注意到 bool在 QtCreator 中以不同于其他类型的颜色突出显示: 只有在包含某些 header 时才会发生这种情况,最终我将其追踪到 . QtCreator 的代码检查器似乎无法手动跟踪
有一个函数: func (first: Int) -> Int -> Bool -> String { return ? } 返回值怎么写?我对上面 func 的返回类型感到很困惑。 最
训练神经网络学习“异或” 我正在尝试使用“批量归一化”,我创建了一个批量归一化层函数“batch_norm1”。 import tensorflow as tf import nump
我已经创建了任务函数来验证我的 json 文件。一切正常,直到我没有使用结果。当我试图从 async task function 获得结果时它显示错误为 Cannot implicitly conve
我有一个函数 func login (parameters: [(String, Any)], completion: @escaping (Bool) -> Vo
我正在处理最近从 X/Motif 转移到 Qt 的 C++ 代码库。我正在尝试编写一个 Perl 脚本,它将用 bool 替换所有出现的 Boolean(来自 X)。该脚本只是做了一个简单的替换。 s
嗨,我正尝试创建一个Visiblity小部件,如果用户在Firebase数据库阵列上,该小部件将显示。看起来像这样(成员数组): 如您所见,我创建了一个StreamBuilder,如果当前用户的用户名
我创建了如下的rest api方法, Future activateAccount(int id, int code) async{ final body = {"code": '$c
在我的Flutter应用中,我有一个返回Future的函数,但我想将结果作为Stream。这是函数: Future isGpsOn() async { if (await Geolocat
我可以看到 BOOLEAN 覆盖了 __visit_name__ class BOOLEAN(Boolean): __visit_name__ = 'BOOLEAN' 控制调度员选择的访问者方
考虑以下代码: bool x; bool? y = null; x = y?? true; 将 bool? 分配给 bool 是一个编译时错误,但上面的代码在编译和运行时都成功了。为什么?尽管第三条语
我正在重写一些 Javascript 代码以在 Excel VBA 中工作。由于在这个网站上搜索,我已经设法翻译了几乎所有的 Javascript 代码!但是,有些代码我无法准确理解它在做什么。这是一
我想拍一张bool来自Vec并在 if 语句中进行比较。如何解决以下错误? | 7 | if cell { | ^^^^ expected
我在我的应用程序崩溃跟踪工具中发现了一些崩溃。基本上我有一个 tabBarController,其中一个选项卡有一个嵌入式 UIWebView,另一个选项卡有一个带有 UITableView 的 Co
我是一名优秀的程序员,十分优秀!