-
Notifications
You must be signed in to change notification settings - Fork 5
Open
Labels
enhancementNew feature or requestNew feature or request
Description
Is your feature request related to a problem? Please describe.
When making HTTPS requests to servers with self-signed certificates or invalid certificates, the current implementation fails with certificate verification errors. This is frustrating when testing against development environments or internal services that use self-signed certificates.
Describe the solution you'd like
Add an insecure parameter to the net_http_request
table that allows users to disable TLS certificate verification, similar to curl's -k flag. This would make it easier to test against development environments and internal services.
Describe alternatives you've considered
- Using custom CA certificates (more complex to set up)
- Using HTTP instead of HTTPS (not viable as many servers force HTTPS via redirects)
- Manually handling certificate verification in application code (more complex)
- Using a different tool like curl with -k flag (requires switching tools)
Metadata
Metadata
Assignees
Labels
enhancementNew feature or requestNew feature or request