Ask Your Question
0

What is the Curl alternative to Invoke-RestMethod with the provided certificate thumbprint on the given URL?

asked 2023-06-13 13:09:51 +0000

lalupa gravatar image

edit retag flag offensive close merge delete

1 Answer

Sort by ยป oldest newest most voted
2

answered 2023-06-13 13:23:02 +0000

huitzilopochtli gravatar image

The cURL command with a given certificate thumbprint would look something like this:

curl --cert <path_to_certificate_file> --cacert <path_to_ca_certificate_file> --key <path_to_private_key_file> -X <HTTP_METHOD> <URL>

Replace the following placeholders with actual values:

  • <path_to_certificate_file> : the path to the client certificate file in PEM format.
  • <path_to_ca_certificate_file> : the path to the CA certificate file in PEM format (if applicable).
  • <path_to_private_key_file> : the path to the client private key file in PEM format.
  • <HTTP_METHOD> : the HTTP method (e.g., GET, POST, PUT, DELETE).
  • <URL> : the URL to which to send the HTTP request.

Example:

curl --cert /path/to/cert.pem --cacert /path/to/ca_cert.pem --key /path/to/key.pem -X GET https://example.com/api/v1/resource
edit flag offensive delete link more

Your Answer

Please start posting anonymously - your entry will be published after you log in or create a new account. This space is reserved only for answers. If you would like to engage in a discussion, please instead post a comment under the question or an answer that you would like to discuss

Add Answer


Question Tools

Stats

Asked: 2023-06-13 13:09:51 +0000

Seen: 11 times

Last updated: Jun 13 '23