要将遥测数据从thing
(比如 Sensor1)发送到 AWS IoT Core 端点,我们需要:
- AWS IoT 证书颁发机构公共证书
- 附有适当策略和 Sensor1 的证书
- 第 2 点的证书私钥
const deviceName = 'Sensor1'
// Create the thingShadow object with argument data
const device = awsIoT.device({
keyPath: 'private.pem.key',
certPath: 'certificate.pem.crt',
caPath: '/home/ec2-user/environment/root-CA.crt',
clientId: deviceName,
host: endpointFile.endpointAddress
});
我想大致了解安全系统如何利用 keyPath、certPath、caPath 来建立安全连接。