I\'m trying to get a webpage via node https.request(). Doing so results in an error getting logged by my code. Using the node request module has the same result:
We hit the same problem. By default, request uses the https.globalAgent. So we added the code near the top of our script.
var https = require('https'); https.globalAgent.options.secureProtocol = 'SSLv3_method';
All of a sudden everything worked.