Blame view

php/rest/auth.php 315 Bytes
6104c71e   Nathanael Jourdane   Replace function ...
1
2
3
<?php

/**
70880168   Nathanael Jourdane   Add rate limit on...
4
5
 * @file getParameter.php
 * @brief  REST interface for service getParameter
6104c71e   Nathanael Jourdane   Replace function ...
6
7
 *
 *
70880168   Nathanael Jourdane   Add rate limit on...
8
 * @version $Id:  $
6104c71e   Nathanael Jourdane   Replace function ...
9
10
 */

70880168   Nathanael Jourdane   Add rate limit on...
11
require_once '../config.php';
6104c71e   Nathanael Jourdane   Replace function ...
12

70880168   Nathanael Jourdane   Add rate limit on...
13
14
$amda_ws = new WebServer();
$result = $amda_ws->getNewToken($_GET);
6104c71e   Nathanael Jourdane   Replace function ...
15

70880168   Nathanael Jourdane   Add rate limit on...
16
17
18
19
20
if ($result['success']) {
    echo $result['token'];
} else {
    echo $result['message'];
}
6104c71e   Nathanael Jourdane   Replace function ...
21
22

?>