0
我使用這些代碼幫助:[iotivity]需要使用JavaScript API
Client.js:
var client = require('./Client');
client.on("resourcefound",function(event){
//client.retrieve();
//client.update();
});
client.findResources();
Server.js:
var server=require('./Server');
server.register({
resourcePath:"https://stackoverflow.com/a/fan",
resourceTypes:[ "core.fan" ],
interfaces:["oic.if.baseline"],
discoverable: true,
properties:{on:false}
});
我運行這些代碼和在兩個終端中都沒有發生像無限循環一樣的事情。
我使用薩卡里的代碼,我得到了很多錯誤
的任何人都可以幫助我瞭解,如果客戶端發現資源,我能做些什麼,看的請求和響應。我不知道如果要求是正確的Sakari說client.js需要(「oic」)(「客戶端」),但我得到像沒有找到oic的錯誤。
薩卡里poussa介紹:http://events.linuxfoundation.org/sites/events/files/slides /NodeJS_JavaScript-for-IoTivity.pdf。 – jimloca
請不要發佈你的代碼截圖 - 在這裏包括你的代碼作爲文本。 – Filburt
哦,我很抱歉,我不知道! – jimloca