Websockets connection to AWS IOT

0

I am unable to connect using websockets to AWS IOT. It gives error of 426 or websockets connection failed. I have tried all python libraries.

2 Antworten
0

Hello suleman! Have you taken a look at the aws-iot-device-sdk-python SDK? In it's README, it shows how to setup an MQTT client to connect to AWS IoT Core over Websockets. The big thing to be aware of is that Websocket connections require a different way of authenticating - which is explained well in the README.

Update: Use the aws-iot-device-sdk-python-v2 SDK instead

AWS
KodyAWS
beantwortet vor 8 Monaten
  • pending_bytes = self.socket().pending() AttributeError: 'NoneType' object has no attribute 'pending' error, tried all but unable to connect

0

Hi Suleman,

to use Websockets with AWS IoT we strongly advice to use the off-the-shelf AWS IoT device sdk libraries aws-iot-device-sdk-python-v2. With those libraries you do not need to work at the socket level as you have done in the code snippet you provided.

In the example folder you also find a complete implementation for using websockets. https://github.com/aws/aws-iot-device-sdk-python-v2/blob/main/samples/websocket_connect.py and the associated README

AWS
EXPERTE
beantwortet vor 8 Monaten

Du bist nicht angemeldet. Anmelden um eine Antwort zu veröffentlichen.

Eine gute Antwort beantwortet die Frage klar, gibt konstruktives Feedback und fördert die berufliche Weiterentwicklung des Fragenstellers.

Richtlinien für die Beantwortung von Fragen