2016-09-21 6 views

答えて

0

VDボタンのコードは次のようにする必要があります:メインループセクション(とのシーンで)で

local http = Net.FHttp("192.168.0.32", 80); 
local response = http:GET("/core/api/api.php?param=2335"); 

それはちょっと異なる構文を持っています。

local http = net.HTTPClient(); 
http : request('https://api.lifx.com/v1/lights/label:Light1/state.json?selector=label:Light1&power=on&brightness=0.7', { 
    options = { 
     method = "PUT", 
     headers = { 
      ['Authorization'] = 'Bearer cce26ealkadj764' 
     }, 
     data = "" 
    }, 
    success = function(response) fibaro:debug (response.data) end, 
    error = function(err) fibaro:debug ("Error:" .. err) end 
}); 
関連する問題