↧
Answer by theGleep for Https request not working in node.js
Also, you're hitting port 80, which is usually not the HTTPS port.
View ArticleAnswer by user94559 for Https request not working in node.js
EDIT Switched to port 443 as well.Your host seemed to include part of the path? Try this instead (left just the host in host and moved the path to path):var options = { host : 'myserver', port : 443,...
View ArticleHttps request not working in node.js
In my node.js app, I want to make an https api call. I am trying with the https module and it is not working, but then I try with a request module, and that works.not workvar options = { host :...
View Article
More Pages to Explore .....