我正试图将以下curl命令转换为httr/RCurl,以将cookie转换为R。但我不知道如何使用getURL(…)或get(…)传递数据"j_username=username&j_password=password"
curl --data "j_username=username&j_password=password" http://localhost:8080/myApp/j_spring_security_check --cookie-jar cookies.txt
我可以获得上面命令行curl命令创建的cookie信息,并将其粘贴到get请求中(它有效)。如果我能在R中生成cookie,那会很方便。
这是我的工作httr get get():
GET(dataURL,
verbose(),
add_headers("Content-type"="application/json",
"Accept"="application/json",
"Accept-Version"=" 1.0",
"Cookie"="JSESSIONID=24BA7A80A02317AD2B6C87C8D10B6787"
)
)
如果没有一个可复制的示例,很难判断,但我认为您想要的httr代码是:
library(httr)
baseUrl <- "http://localhost:8080/myApp/"
POST(baseUrl, path = "j_spring_security_check",
body = list(j_username = "username", j_password = "password"),
multipart = FALSE,
verbose()
)
headers <- add_headers(
"Content-Type" = "application/json",
Accept = "application/json",
"Accept-Version" = "1.0"
)
GET(baseUrl, headers, verbose())
httr自动设置句柄以在域中保留cookie。
使用以下链接,我能够进行身份验证并从REST获取数据:[如何使用RCurl向springsecurity/grails应用进行身份验证
以下是我的代码片段,可以帮助其他可能遇到此问题的人:
require(RCurl)
require(RJSONIO)
baseUrl = "http://localhost:8080/myApp/"
authenticateUrl = paste(baseUrl, "j_spring_security_check", sep="")
curl = getCurlHandle()
curlSetOpt(ssl.verifypeer=FALSE, timeout=60, cookiefile="cookies.txt",
cookiejar="cookies.txt",
followlocation = TRUE, curl=curl, verbose=verbose
)
loginUrl = paste(baseUrl, "login/auth", sep="")
getURL(loginUrl, curl=curl)
postForm(authenticateUrl, .params= list(j_username="username", j_password="password"),
curl=curl, style="POST")
getResponse <- getURL(baseUrl,
httpheader=c("Content-Type"="application/json",
Accept="application/json",
"Accept-Version"=" 1.0"),
curl=curl)
...
希望这能有所帮助。