How do I get data by fetch request to server with self-signed certificate on Worker?
on nodejs runtime I could set
rejectUnauthorized:false
to the agent from undici
, but I can't do that on Worker1 Reply
You can't do that with workers because node fetch doesn't have an option to ignore SSL invalid SSL certificates. You could look at doing it yourself with outbound websockets