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
posta 8 mesi fa265 visualizzazioni
2 Risposte
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
con risposta 8 mesi fa
  • 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
ESPERTO
con risposta 8 mesi fa

Accesso non effettuato. Accedi per postare una risposta.

Una buona risposta soddisfa chiaramente la domanda, fornisce un feedback costruttivo e incoraggia la crescita professionale del richiedente.

Linee guida per rispondere alle domande