Configure HTTPS in CloudCode
Self-signed Certificates
const https = require('https');
const agent = https.Agent({
// This allows ANY certificate - dangerous! Only use for testing
rejectUnauthorized: false
});
const response = await fetch('https://self-signed.badssl.com/', { agent });IP Whitelisting
Proxy with self-signed certificates
Resources
Last updated