AWS IoT MQTT over WebSocket Protocol

Question:

I’ve been following the AWS IoT docs trying to get started with the MQTT tutorial at
http://docs.aws.amazon.com/iot/latest/developerguide/protocols.html#mqtt-ws
to set up a WebSocket connection to AWS IoT in a web application. The first step is to initiate a WebSocket connection by making a GET request to an endpoint created by following the steps in the tutorial but I’m getting this error:

XMLHttpRequest cannot load <my endpoint> Cross origin requests are only supported for protocol schemes: http, data, chrome, chrome-extension, https, chrome-extension-resource.

I was wondering if anyone has encountered this error and if so, how they resolved it?

Here’s a link to the code https://github.com/dwyl/learn-aws-iot/blob/2c8035728ec8228e296580c8714f3f7ace870fbe/src/js/components/App.js

Answer:

Here’s an example of how I’m opening the channel. I’m using Cognito unauth roles as a subscriber. I’m using the JS Paho client as well.

http://draw.kyleroche.com/main.js

Leave a Reply