Connecting to Mesh Api : PEM Certificate #144
-
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
Hi, Most likely you are using Mesh in version <= 2.2. Could you check what is the version of Mesh you are trying to connect to? Regarding the The secure TLS connection is required for authentication, here is more info about it: In case something is unclear or you have other questions just let me know. Kind regards, |
Beta Was this translation helpful? Give feedback.
Hi,
Most likely you are using Mesh in version <= 2.2. Could you check what is the version of Mesh you are trying to connect to?
Current master requires Mesh v2.3 which should be available externally starting end of this week.
Meanwhile for Mesh 2.2 please use this:
https://github.com/PowelAS/sme-mesh-python/tree/Mesh_v2.2
Regarding the
secure_connection
toroot_pem_certificate
change: previously there was a bool parametersecure_connection
inConnection
class. When set to True it meant that we requested secure (using TLS certificate) connection to the server. However the path to TLS certificate was hardcoded. To make it flexible now we removed the hardcoded path and enabled users to provi…