You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on May 23, 2019. It is now read-only.
In RStudio, I got the error below when connecting R with Neo4j vis HTTPS protocol
graph = startGraph("https://xx.xxx.xxx.xx:7473/db/data/", username = "xxx", password = "xxx")
Error in curl::curl_fetch_memory(url, handle = handle) :
schannel: next InitializeSecurityContext failed: SEC_E_UNTRUSTED_ROOT (0x80090325) - The certificate chain was issued by an authority that is not trusted.
Same issue was raised back in 2015 (#21) and it seems like Nicole addressed it by specifying: ssl_verifypeer = 0. Basically, Nicole set an option that skips verifying the SSL certificate.
I am wondering if same issue as in 2015 surfaced again or I missed anything?