How to safely use curl ignore certificate for testing purposes?

14 Replies, 1762 Views

Hey! Just chiming in to say `-k` is the flag you need for *curl ignore certificate* checks.

If you’re worried about missing errors, you can use `-v` for verbose mode and redirect stderr to a file:
`curl -k -v https://example.com 2> errors.log`

This’ll save all the error messages to `errors.log` so you can review them later.

Messages In This Thread



Users browsing this thread: 1 Guest(s)