afschmitt Posted February 16, 2016 Posted February 16, 2016 Hello, I am trying to integrate my Hue hub into the ISY network module. I've followed the online directions from this forum but I'm getting a strange response message and my commands are not working. I've tried using the regular (round) hub and the new (square) homekit hub. Everything works fine if I use Hue api debugger.
Michel Kohanim Posted February 16, 2016 Posted February 16, 2016 Hi afschmitt, All you have to look at is the first line: HTTP/1.1 200 OK In this case, 200 = command succeeded. So, the main question is whether or not Hue actually did what you asked it to do. With kind regards, Michel
afschmitt Posted February 16, 2016 Author Posted February 16, 2016 It did not actually do what was intended. I've been reading about the issue. Here is someone having a similar issue. http://stackoverflow.com/questions/33143604/how-to-get-around-cors-with-philips-hue-hub Any ideas on how to get this working?
PurdueGuy Posted February 17, 2016 Posted February 17, 2016 What are you trying to do? The HTTP request in your screenshot doesn't do anything, it just gets the status of light 1. ISY can't get/parse that status. To change light state, you would need to do a PUT of something like: Path: /api/<username>/lights/1/state Body: { "on":true, "bri":255 }
Recommended Posts