As this tutorial aims to be simple and straightforward, the following commands are allowing the device to connect using insecure protocols, such as plain text MQTT or MQTTs without mutual authentication. In production, you should Deny Insecure
connections to have the highest level of security. This is done by setting the field allow_insecure
to false
.
Getting started with the IoT Hub API
In this tutorial we will use the API through the well known utility curl. This will show you how to create Hubs and Devices, as well as more advanced features of the Scaleway IoT Hub: Hub Events and Routes.
The API reference is here: IoT API
Before you start
To complete the actions presented below, you must have:
- A Scaleway account logged into the console
- Owner status or IAM permissions allowing you to perform actions in the intended Organization
- A valid API key.
- Installed
curl
,mosquitto-clients
(mqtt client), andjq
(json parsing tool)
You already set the SCW_SECRET_KEY
variable above, now set the following variables from the same terminal on your local computer:
IOT_API="https://api.scaleway.com/iot/v1/regions/fr-par"SCW_DEFAULT_PROJECT_ID="<your project ID here>"
Setting up the IoT Hub
The Hub creation is done through a REST endpoint. To create a Hub, you will need to provide:
- Your Project ID.
- A name.
- A product plan.
We will save the output to hub.json
file:
curl -sS -H "X-Auth-Token: $SCW_SECRET_KEY" -d '{"project_id": "'$SCW_DEFAULT_PROJECT_ID'","name": "my_first_hub","product_plan": "plan_dedicated"}' $IOT_API/hubs > hub.jsonjq < hub.json
hub.json
will contain something like:
{"region": "fr-par","id": "035eb275-6ee7-40a2-b68a-d84b84cc236e","organization_id": "<your organization ID>","project_id": "<your_project_ID>","name": "my_first_hub","status": "enabling","product_plan": "plan_dedicated","endpoint": "iot.fr-par.scw.cloud","created_at": "2021-04-26T11:39:53.927Z","updated_at": "2021-04-26T11:39:53.927Z","enabled": true,"device_count": 0,"connected_device_count": 0,"disable_events": false,"events_topic_prefix": "$SCW/events","enable_device_auto_provisioning": false,"has_custom_ca": false}
We can poll the hub status until it is ready:
curl -sS -H "X-Auth-Token: $SCW_SECRET_KEY" $IOT_API/hubs/$(jq -r '.id' hub.json) | jq -r '.status'
At some point, the status will switch to ready
.
Setting up the devices
Now we need to create 2 devices. You need to provide:
- The Hub ID. This is the
"id"
field from the JSON response received while creating a hub. - A name.
We will save the response to a file so we can use the fields later.
curl -sS -H "X-Auth-Token: $SCW_SECRET_KEY" -d '{"hub_id": "'$(jq -r '.id' hub.json)'","name": "my_first_device","allow_insecure": true}' $IOT_API/devices > dev1.jsonjq < dev1.json
dev1.json
should contain something like:
{"device": {"id": "f926489b-92d4-4572-bc96-dfad83c3db4b","name": "my_first_device","status": "enabled","hub_id": "035eb275-6ee7-40a2-b68a-d84b84cc236e","created_at": "2021-04-26T11:42:43.552Z","updated_at": "2021-04-26T11:42:43.552Z","allow_insecure": true,"last_activity_at": "1970-01-01T00:00:00Z","is_connected": false,"message_filters": {"publish": {"policy": "reject","topics": []},"subscribe": {"policy": "reject","topics": []}},"allow_multiple_connections": false,"description": ""},"certificate": {"crt": "<certificate here>","key": "<certificate key here>"}}
Let’s now create a second device:
curl -sS -H "X-Auth-Token: $SCW_SECRET_KEY" -d '{"hub_id": "'$(jq -r '.id' hub.json)'","name": "my_second_device","allow_insecure": true}' $IOT_API/devices > dev2.jsonjq < dev2.json
How to subscribe and publish
Now that everything is set up, let’s simulate 2 devices and send data now.
Setup the subscriber:
# In one terminalmosquitto_sub \-h $(jq -r '.endpoint' hub.json) \-i $(jq -r '.device.id' dev1.json) \-t mytopic/mysubtopic
Run the publisher:
# In another terminalmosquitto_pub \-h $(jq -r '.endpoint' hub.json) \-i $(jq -r '.device.id' dev2.json) \-t mytopic/mysubtopic \-m 'Hello, world!'
You should see the subscriber receive the Hello, world!
message.
How to configure secure connections
If you require security, you can also connect your device to the Hub using TLS mutual authentication. With this method, the Hub can check the device’s identity, and the device can check the Hub’s identity.
It is possible to connect to the Hub using TLS but without Mututal authentication. In this case the device certificates are not needed as the Hub does not need to check the device identity. But the Hub certificate will still be needed as your client must check the hub’s identity.
First, download the IoT Hub’s server CA:
curl -sS -O https://iot.s3.nl-ams.scw.cloud/certificates/fr-par/iot-hub-ca.pemsha1sum iot-hub-ca.pem# 13cf3e59ed52d4c4b6bc249e85539d5fd5d572fb iot-hub-ca.pem
Now, extract the certificates from the device JSON files, so that the mosquitto clients may use them:
jq -r '.certificate.crt' dev1.json > dev1.crtjq -r '.certificate.key' dev1.json > dev1.keyjq -r '.certificate.crt' dev2.json > dev2.crtjq -r '.certificate.key' dev2.json > dev2.key
Finally, run the same test as before, but with the added security:
# In one terminalmosquitto_sub \-h $(jq -r '.endpoint' hub.json) -p 8883 \--cert dev1.crt --key dev1.key --cafile iot-hub-ca.pem \-i $(jq -r '.device.id' dev1.json) \-t mytopic/mysubtopic
# In another terminalmosquitto_pub \-h $(jq -r '.endpoint' hub.json) -p 8883 \--cert dev2.crt --key dev2.key --cafile iot-hub-ca.pem \-i $(jq -r '.device.id' dev2.json) \-t mytopic/mysubtopic \-m 'Hello, SECURE world!'
You can mix MQTT and MQTTs clients on the same hub.
Going further
You can harness the real power of MQTT Pub/Sub with this blog post: An Introduction to the MQTT protocol.