We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 538da9e commit b7a5084Copy full SHA for b7a5084
mtls-examples/dotnet-csharp/Program.cs
@@ -23,11 +23,11 @@ static async void HTTP_GET()
23
{
24
// path of pfx file generate by
25
// $ openssl pkcs12 -export -out certificate.pfx -inkey privateKey.key -in certificate.crt -certfile CAcert
26
- var certificateLocation = "/app/lean.pfx";
+ var certificateLocation = "";
27
// password of pfx file
28
- var certificatePassword = "123456";
+ var certificatePassword = "";
29
// lean app token
30
- var leanAppToken = "d20d0e48-5887-4eb7-9d9d-fe5d459d79d8";
+ var leanAppToken = "";
31
// create a new HttpClientHandler
32
var handler = new HttpClientHandler();
33
// create a new certficite using location and password
0 commit comments