Fix login tramite api
This commit is contained in:
parent
8a19e433bd
commit
ed1e1980c6
|
@ -34,9 +34,6 @@ register_shutdown_function('serverError');
|
||||||
|
|
||||||
include_once __DIR__.'/../core.php';
|
include_once __DIR__.'/../core.php';
|
||||||
|
|
||||||
// Disabilita la sessione per l'API
|
|
||||||
session_write_close();
|
|
||||||
|
|
||||||
// Permesso di accesso all'API da ogni dispositivo
|
// Permesso di accesso all'API da ogni dispositivo
|
||||||
header('Access-Control-Allow-Origin: *');
|
header('Access-Control-Allow-Origin: *');
|
||||||
header('Access-Control-Allow-Methods: POST, GET, PUT, DELETE, OPTIONS');
|
header('Access-Control-Allow-Methods: POST, GET, PUT, DELETE, OPTIONS');
|
||||||
|
@ -67,3 +64,5 @@ if (json_last_error() == JSON_ERROR_NONE) {
|
||||||
|
|
||||||
// Stampa dei risultati
|
// Stampa dei risultati
|
||||||
echo $response;
|
echo $response;
|
||||||
|
|
||||||
|
Auth::logout();
|
Loading…
Reference in New Issue