我正在尝试使用httr库在R中执行GET操作,我收到此错误 - SSL:证书主题名称'string'与目标主机名'localhost'不匹配。 寻找解决方法的方法。
我正在使用以下代码:
set_config(config( ssl_verifypeer = 0L ))
URL <- "https://localhost:8081/projectname/rest/entity/path/entityDetails"
URL.response <- GET(URL,authenticate("username","password"))