に登録することはできませんがRasberryPiと呼ばれ、私は、次のコードを使用して、その影に登録しようとしています:AWS IOT:私はAWSのIoTでものを作成した影
var awsIot = require('aws-iot-device-sdk');
var thingShadows = awsIot.thingShadow({
keyPath: "./certs/private.pem.key",
certPath: "./certs/certificate.pem.crt",
caPath: "./certs/root-CA.crt",
clientId: "RasberryPi1",
region: "eu-west-1",
port: "8883",
debug: true
});
thingShadows.on('connect', function() {
console.log('connected');
thingShadows.register('RasberryPi1', function() {
console.log('registered');
...
私は正常に接続が、私は登録したことがありません。つまり、2番目のconsole.logステートメントは決して実行されません。誰も私の間違いについて助言してもらえますか?私はAWS IoTの新機能です。私の間違いはおそらく非常に基本的なものです。
感謝