-
-
Save junlapong/e3aa2a334f880e0c70ee2bb78c9cc136 to your computer and use it in GitHub Desktop.
Go HTTP client using pkcs12 certificate
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/sh | |
## First convert .p12 cert to certificate and key .pem files: | |
openssl pkcs12 -in cert.p12 \ | |
-clcerts -nokeys -out usercert.pem | |
openssl pkcs12 -in cert.p12 \ | |
-nocerts -out userkey.pem -nodes |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package main | |
import ( | |
"crypto/tls" | |
"fmt" | |
"io/ioutil" | |
"log" | |
"net/http" | |
"strings" | |
) | |
func main() { | |
// Create request: | |
url := "https://host/path" | |
body := "request payload" | |
req, err := http.NewRequest("POST", url, strings.NewReader(body)) | |
if err != nil { | |
log.Panic("Error creating new HTTP request. ", err) | |
} | |
// Create client: | |
cert, err := tls.LoadX509KeyPair("usercert.pem", "userkey.pem") | |
if err != nil { | |
log.Panic("Certficate load error. ", err) | |
} | |
tr := &http.Transport{ | |
TLSClientConfig: &tls.Config{ | |
Certificates: []tls.Certificate{cert}, | |
}, | |
} | |
client := &http.Client{Transport: tr} | |
// Now execute request: | |
resp, err := client.Do(req) | |
if err != nil { | |
log.Panic("Error making HTTP request using client. ", err) | |
} | |
respBody, _ := ioutil.ReadAll(resp.Body) | |
fmt.Println("## Response Body:\n", string(respBody)) | |
} | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment