Welcome to the Treehouse Community
The Treehouse Community is a meeting place for developers, designers, and programmers of all backgrounds and skill levels to get support. Collaborate here on code errors or bugs that you need feedback on, or asking for an extra set of eyes on your latest project. Join thousands of Treehouse students and alumni in the community today. (Note: Only Treehouse students can comment or ask questions, but non-students are welcome to browse our conversations.)
Looking to learn something new?
Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and a supportive community. Start your free trial today.

Daiwik kuvvarapu
986 PointsHow to bypass the self signed certificate(https) ?
I need to bypass the self signed certificate.(ie. without checking the certificate).
2 Answers

Iain Simmons
Treehouse Moderator 32,252 PointsThere are a couple of options, one far less secure than the other, described on Stack Overflow:
Node.js request CERT_HAS_EXPIRED
tldr; add this to the top of your file:
process.env.NODE_TLS_REJECT_UNAUTHORIZED = '0';

Daiwik kuvvarapu
986 PointsThanks Iain Simmons.

Iain Simmons
Treehouse Moderator 32,252 PointsIf my answer helped, please mark it as best answer.