Proxy configuration
How to use
For the SDK to use your proxy to make requests, you must enter the settings to be used through an instance of the ProxySettings
class sent as a parameter to the setProxySettings
method in the builder of any of our SDKs:
Constructor method
Optional methods
setAuthentication(String user, String password)
setAuthentication(String user, String password)
Tells you the authentication parameters of your proxy if any.
setProxyCertificate(@RawRes Integer proxyCertificate)
setProxyCertificate(@RawRes Integer proxyCertificate)
If your proxy server uses a self-signed SSL certificate or one issued by a non-public Certification Authority (CA), add the CA certificate in PEM
or DER
format to res/raw/
(e.g.res/raw/proxy_certificate
) and pass as argument the file identifier (e.g.R.raw.proxy_certificate
).
setMTLSConfig(@RawRes Integer clientCertificate, String password)
setMTLSConfig(@RawRes Integer clientCertificate, String password)
If your proxy server supports mTLS, save the certificate to be used by the client in PKCS12
format (.p12
) in res/raw/ (e.g. res/raw/client_certificate)
and pass the file identifier (e.g. R.raw.client_certificate) and the private key as an argument.
Last updated