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.

suleman
已提問 8 個月前檢視次數 265 次
2 個答案
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
已回答 8 個月前
  • 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
專家
已回答 8 個月前

您尚未登入。 登入 去張貼答案。

一個好的回答可以清楚地回答問題並提供建設性的意見回饋,同時有助於提問者的專業成長。

回答問題指南