Сообщество IT-специалистов
Ответы на любые вопросы об IT
Профессиональное развитие в IT
Удаленная работа для IT-специалистов
curl -X POST --header "Content-Type: text/plain" --header "Accept: application/json" -d "OFF" "http://{openHAB_IP}:8080/rest/items/My_Item"
file_get_contents('http://{openHAB_IP}:8080/rest/items/My_Item', false, stream_context_create(array('http' => array( 'method' => 'POST', 'header' => 'Content-Type: text/plain\r\nAccept: application/json\r\n', 'content' => 'OFF' ))));