Rabbit
Rabbit

Reputation: 161

How to RestSharp add client certificate in Https request? (C#)

How to RestSharp add client certificate in Https request ? My code it doesn't work .

    public static IRestResponse<User> AsyncHttpRequestLogIn(string path, string method, object obj)
    {
        var client = new RestClient(Constants.BASE_URL + path); // https:....
        var request = method.Equals("POST") ? new RestRequest(Method.POST) : new RestRequest(Method.GET);
        request.RequestFormat = RestSharp.DataFormat.Json;

        // The path to the certificate.
        string certificate = "cer/cert.cer";     

        client.ClientCertificates.Add(new X509Certificate(certificate));

        request.AddBody(
            obj
        );


        IRestResponse<User> response = client.Execute<User>(request);

        return response;

    }

Upvotes: 16

Views: 28746

Answers (1)

tungula
tungula

Reputation: 578

At first you should import certificate and then attach to request

X509Certificate2 certificate = new X509Certificate2();
certificates.Import(...);

client.ClientCertificates = new X509CertificateCollection(){certificate};

Upvotes: 29

Related Questions