HTTP Request for shutters

Openhab v3.2.0

Hello,
I have a HTTP Link for my shutters like this:

http://ip:8085/fhem?cmd=set+OG_ROLL_ab+off&XHR=1&passcode

I’m trying to implement ON/OFF (equals up and down commands) and have no success. According to the logs it seems that open hab just sets a call to the base url, not the ending.
That’s why it just gets the HTTP page content back.


Does anyone have a recommendation for me?

I am not using this binding, so I cannot test. But from what I can read you need to change the base url to

http://ip:8085/fhem?cmd=set+OG_ROLL_ab+%2$s&XHR=1&passcode

depending on the actual on/off value which I cannot see due to masking.

off value: off
on value: on

@max2

1 Like

Thank you very much Oliver!

That was the solution! :grinning: