Page 1 of 1

How connect Z-Way via remote service find.z-wave.me

Posted: 22 Dec 2016 13:17
by pah111kg
Hi,

I'm working on a Java client and try to connect Z-Way via the remote service.

POST: https://find.z-wave.me:443/zboxweb?act= ... n&pass=***

But the ZBW-SESSID header is empty (HTTP response status is 200 and the content is the find.z-wave.me/zboxweb HTML-Code). My logging data will work through the web interface.

In the forum I found only that: https://forum.z-wave.me/viewtopic.php?f ... ilit=proxy.

Is there another way? Or is the request wrong?

Many thanks!

Patrick

Re: How connect Z-Way via remote service find.z-wave.me

Posted: 03 Jan 2017 22:37
by golaonline
Did you get any answer to this, I had a similar question out at https://forum.z-wave.me/viewtopic.php?f=3422&t=24183, I am trying to achieve the same in JavaScript.

Re: How connect Z-Way via remote service find.z-wave.me

Posted: 04 Jan 2017 15:10
by pah111kg
Hi,

Look at the issue: https://github.com/Z-Wave-Me/home-automation/issues/411.

For my client it works as described below:

POST: https://find.z-wave.me/zboxweb with
- Content type: application/x-www-form-urlencoded
- POST data: act=login&login=***/admin&pass=***

Store cookies contained in the response: ZWAYSession and ZBW_SESSID

Add these cookies to all subsequent requests.

Patrick