RosettaCodeData/Task/HTTPS-Client-authenticated/Wren/https-client-authenticated.wren

8 lines
175 B
Text
Raw Permalink Normal View History

2025-02-27 18:35:13 -05:00
import "os" for Process
var certFile = "myCert.pem"
var keyFile = "myKey.pem"
var url = "www.example.com"
Process.exec("curl", ["--cert", certFile, "--key", keyFile, url])