1

RCurl is giving me an error:1411809D:SSL routines:SSL_CHECK_SERVERHELLO_TLSEXT:tls invalid ecpointformat list when I try to connect via SSL to an https (not public, unfortunately) endpoint to fetch some JSON.

I've put ssl.verifypeer = FALSE, and I don't know how to adjust the cipher list to avoid ECC suites.

How do I fix this? It works fine in the browser.

3
  • 1
    The issue is described here. Try setting sslversion=3L in your RCurl call with ssl.verifypeer=TRUE. Commented Nov 18, 2013 at 13:16
  • This fixed the ssl errors, thanks. There's a further issue with my calls in stackoverflow.com/questions/20051258/… that seems to be intermittently messing with ssl as well. Commented Nov 18, 2013 at 15:25
  • Okay, I've posted it as an answer then (and already responded to your other question). Commented Nov 18, 2013 at 15:26

1 Answer 1

2

The issue is described here for python. Setting sslversion=3L in your RCurl call with ssl.verifypeer=TRUE should resolve the problem.

Sign up to request clarification or add additional context in comments.

Comments

Your Answer

By clicking “Post Your Answer”, you agree to our terms of service and acknowledge you have read our privacy policy.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.