tisboyo / Twitch_Bot

4 stars 2 forks source link

Host MQTT server #62

Closed baldengineer closed 3 years ago

baldengineer commented 3 years ago

Transition away from Adafruit IO.

Concerns:

  1. Authentication
  2. Can ESP8266 do SSL?

Goal for end of December is a plan to transition.

tisboyo commented 3 years ago

Warning: make sure to update certifi when using connecting in other scripts, https://github.com/eclipse/paho.mqtt.python/issues/85

Also, for paho.mqtt don't forget to do client.tls_set() to enable TLS. If unable to get certifi to update do client.tls_set(cert_reqs=ssl.CERT_NONE)

tisboyo commented 3 years ago

A resource that may be useful for arduino https://learn.adafruit.com/adafruit-feather-m0-wifi-atwinc1500/updating-ssl-certificates

woshiluoyong commented 7 months ago

Warning: make sure to update certifi when using connecting in other scripts, eclipse/paho.mqtt.python#85

Also, for paho.mqtt don't forget to do client.tls_set() to enable TLS. If unable to get certifi to update do client.tls_set(cert_reqs=ssl.CERT_NONE)

Good