X-Git-Url: http://git.datanom.net/qtadmin.git/blobdiff_plain/c49d593ff36278c6c64d0a06bd8a0b6a0b4d2270..9e811c4fe80a993af62021cc75e006a9ee18f179:/rest_client.php diff --git a/rest_client.php b/rest_client.php index 75188f4..33b9e53 100644 --- a/rest_client.php +++ b/rest_client.php @@ -27,9 +27,10 @@ $util = new Utils; $ticket = $cookies = null; $data = 'username=mir@miras.org&password=Clara0503'; -$response = $util->RESTCall($CFG->wblistadm_url.'/ticket', $data, $cookiesIn = '') -if ($response['http_code'] >= 200 and $response['http_code'] <= 204) { +$response = $util->RESTCall($CFG->wblistadm_url.'/ticket', $data, $cookiesIn = ''); +if ($response['http_code'] >= 200 && $response['http_code'] <= 204) { $ticket = json_decode($response['content']); + $token = $ticket->data->CSRFPreventionToken; $cookies = $response['cookies']; } @@ -48,7 +49,7 @@ if ($response['http_code'] >= 200 and $response['http_code'] <= 204) {