@@ -90,7 +90,7 @@ For X509 based mutual TLS, you can create a client where the certificate and pri
90
90
91
91
``` python
92
92
# X.509 based certificate file
93
- cert_file_path = " <certificate file path>"
93
+ cert_filepath = " <certificate file path>"
94
94
# PKCS#1 or PKCS#8 PEM encoded private key file
95
95
pri_key_filepath = " <private key file path>"
96
96
@@ -99,8 +99,8 @@ For X509 based mutual TLS, you can create a client where the certificate and pri
99
99
# Create an MQTT5 Client using mqtt5_client_builder
100
100
client = mqtt5_client_builder.mtls_from_path(
101
101
endpoint = " <account-specific endpoint>" ,
102
- cert_filepath = certificate_file_path ,
103
- pri_key_filepath = private_key_filePath ))
102
+ cert_filepath = cert_filepath ,
103
+ pri_key_filepath = pri_key_filepath ))
104
104
```
105
105
106
106
#### ** Direct MQTT with PKCS12 Method**
@@ -189,4 +189,4 @@ by adding the http_proxy_options keyword argument to the builder:
189
189
```
190
190
191
191
SDK Proxy support also includes support for basic authentication and TLS-to-proxy. SDK proxy support does not include any additional
192
- proxy authentication methods (kerberos, NTLM, etc...) nor does it include non-HTTP proxies (SOCKS5, for example).
192
+ proxy authentication methods (kerberos, NTLM, etc...) nor does it include non-HTTP proxies (SOCKS5, for example).
0 commit comments