no message

This commit is contained in:
2025-08-05 15:26:55 +02:00
parent dd55d405d5
commit 38294aabd1

View File

@@ -431,7 +431,7 @@ class Ladestation_v2 extends IPSModule
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
CURLOPT_HTTPHEADER => [
"Authorization: Bearer ".$this->GetValue("Token_Intern")."",
"Authorization: Bearer ".$this->GetBuffer("Token_Intern")."",
"content-type: application/*+json"
],
]);
@@ -712,7 +712,7 @@ class Ladestation_v2 extends IPSModule
CURLOPT_CUSTOMREQUEST => "POST",
CURLOPT_POSTFIELDS => "{\"amps\":". $value .",\"minutes\":0}",
CURLOPT_HTTPHEADER => [
"Authorization: Bearer ".$this->GetValue("Token_Intern")."",
"Authorization: Bearer ".$this->GetBuffer("Token_Intern")."",
"content-type: application/*+json"
],
]);
@@ -775,7 +775,7 @@ class Ladestation_v2 extends IPSModule
CURLOPT_CUSTOMREQUEST => "POST",
CURLOPT_POSTFIELDS => "{\"amps\":". $value .",\"minutes\":0}",
CURLOPT_HTTPHEADER => [
"Authorization: Bearer ".$this->GetValue("Token_Intern")."",
"Authorization: Bearer ".$this->GetBuffer("Token_Intern")."",
"content-type: application/*+json"
],
]);
@@ -841,7 +841,7 @@ class Ladestation_v2 extends IPSModule
// cURL-Handle schließen
curl_close($ch);
$this->SetValue("Token_Intern", json_decode($response['accessToken']));
$this->SetBuffer("Token_Intern", json_decode($response)['accessToken']);
}