我想翻译以下 HTTP GET 命令以使用 RCurl:
curl -G https://api.example.com/resource \
-d "param=value" \
-d "param=value" \
-u 'user:password'
这是我在 RCurl 中使用 getURL 的尝试:
getURL("https://api.example.com/resource",
userpwd ="username:password",param="value",param="value")
第一个代码块在我的命令行终端中运行良好,在我尝试设置参数之前,我使用 getURL 没有任何问题;我收到警告消息说参数是“无法识别的 CURL 选项”。有任何想法吗?