aws iot javascript sdk有点深奥。 我有一个影子,我只是想读出来。没什么大不了的(我想)
我不知道我需要使用什么功能,只是读出阴影数据。 与AWS的连接工作正常,但无论我想做什么,我都不会收到任何数据。
到目前为止我的代码:
var awsIot = require('aws-iot-device-sdk');
var name = 'Testthing';
var shadow = awsIot.thingShadow({
keyPath: 'cert/privkey.pem',
certPath: 'cert/cert.pem',
caPath: 'cert/rootCA.crt',
clientId: "testapp",
host: "xxx"
});
shadow.on('connect', function() {
shadow.register('Testthing');
});
shadow.get(name, data) { // something like this..
console.log(data);
});
提前致谢!
答案 0 :(得分:2)
我自己解决了这个问题。要读出您当前的Thing Shadow,请使用此代码:
var awsIot = require('aws-iot-device-sdk');
var name = 'yourThingName';
var thingShadows = awsIot.thingShadow({
keyPath: 'cert/privkey.pem',
certPath: 'cert/cert.pem',
caPath: 'cert/rootCA.crt',
clientId: "YourAppName",
host: "YourHostLink"
});
thingShadows.on('connect', function() {
thingShadows.register(name, {}, function() {
thingShadows.get(name);
});
});
thingShadows.on('status', function(name, stat, clientToken, stateObject) {
console.log('received '+stat+' on '+name+': '+JSON.stringify(stateObject));
});