From c49d593ff36278c6c64d0a06bd8a0b6a0b4d2270 Mon Sep 17 00:00:00 2001 From: Michael Rasmussen Date: Wed, 24 Jun 2015 00:25:26 +0200 Subject: [PATCH] prepare for wblistadm server --- rest_client.php | 13 ++++++++++++- 1 file changed, 12 insertions(+), 1 deletion(-) diff --git a/rest_client.php b/rest_client.php index cb28f46..75188f4 100644 --- a/rest_client.php +++ b/rest_client.php @@ -22,10 +22,16 @@ require_once 'config.php'; require_once $CFG->root . 'lib/utils.inc.php'; +session_start(); $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) { + $ticket = json_decode($response['content']); + $cookies = $response['cookies']; +} ?> RESTCall($CFG->wblistadm_url.'/ticket', $data, $cookiesIn = ' - +
+
+
-- 2.39.2