REST.Client.TCustomRESTClient.ClientCertificatePath
Delphi
property ClientCertificatePath: string read GetClientCertificatePath write SetClientCertificatePath;
C++
__property System::UnicodeString ClientCertificatePath = {read=GetClientCertificatePath, write=SetClientCertificatePath};
Properties
Type | Visibility | Source | Unit | Parent |
---|---|---|---|---|
property | public | REST.Client.pas REST.Client.hpp |
REST.Client | TCustomRESTClient |
Description
Specifies the file path of a client certificate (iOS, Linux, Windows, Android).
This path should point to a valid certificate file, typically in .pfx or .pem format. Then, when the RESTClient makes a request, it will use this certificate to establish a secure connection with the server.
You may also need to set other properties, such as ClientCertificatePassword, if your certificate requires a password.
Note: On Android, this is a certificate fingerprint or imported name, not a file path. Password is not used.