我在 PI 和 REST API 上有一个 Openhab 系统,我想在电视屏幕上显示信息。
我试图用卷曲来做到这一点,它奏效了。所以现在我想对 Guzzle 做同样的事情。首先,我只在 PC 的 Project 目录中安装了 composer 和 guzzle,然后我也在 PI 上安装了它们。这两种方法都不起作用,因为我在两次尝试中都收到了 500 错误。
function getCurrentTemp() {
echo "test1";
$client = new GuzzleHttp\Client([
'base_uri'=>'http://fernseher/'
]);
echo "test2";
$return = $client->request('GET','http://openhab.clubdrei.com/rest/items/ThermostateTemp/state', ['auth' => ['User','Password']]);
echo $return;
}
我认为创建客户端会破坏脚本
我需要你的帮助,谢谢