$client = new Client(['cookies'=>true]);
$client->request("POST","https://10.0.109.26/goform/IADIdentityAuth",[
'verify' => false,
"headers"=>[
"Content-Type"=>'application/x-www-form-urlencoded',
'Content-Length'=>26,
],
'form_params'=>[
"username"=>"admin",
"password"=>"admin"
]
]);
$info = $client->get("https://10.0.109.26/HBSimInfo.htm?timestamp=".time(),[
'verify' => false,
]);
return json_decode($info->getBody());