You are not logged in.
Pages: 1
Bonjour j'essai de faire des appel à l'API rest de GLPI mais je trouve ce problème d'authentification même avec un super admin
PS : Mon logiciel est hebergé sur S2I
Appel CURL sur CMD :
curl --insecure -X GET -H "Content-Type: application/json" -H "Authorization: user_token ******" -H "App-Token: *******" "apirest.php/initSession"
Résultat :
<!DOCTYPE html PUBLIC >
<html xmlns="">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1"/>
<title>401 - Unauthorized: Access is denied due to invalid credentials.</title>
<style type="text/css">
<!--
body{margin:0;font-size:.7em;font-family:Verdana, Arial, Helvetica, sans-serif;background:#EEEEEE;}
fieldset{padding:0 15px 10px 15px;}
h1{font-size:2.4em;margin:0;color:#FFF;}
h2{font-size:1.7em;margin:0;color:#CC0000;}
h3{font-size:1.2em;margin:10px 0 0 0;color:#000000;}
#header{width:96%;margin:0 0 0 0;padding:6px 2% 6px 2%;font-family:"trebuchet MS", Verdana, sans-serif;color:#FFF;
background-color:#555555;}
#content{margin:0 0 0 2%;position:relative;}
.content-container{background:#FFF;width:96%;margin-top:8px;padding:10px;position:relative;}
-->
</style>
</head>
<body>
<div id="header"><h1>Server Error</h1></div>
<div id="content">
<div class="content-container"><fieldset>
<h2>401 - Unauthorized: Access is denied due to invalid credentials.</h2>
<h3>You do not have permission to view this directory or page using the credentials that you supplied.</h3>
</fieldset></div>
</div>
</body>
</html>
Offline
votre url semble incomplète :
elle devrait plutôt être du type
www.monsite/glpi/apirest.php/initSession
ou
localhost/glpi//apirest.php/initSession
Trouver la panne avant de réparer...
GLPI10.0.16 (ubuntu 22.04 PHP8.1 Mariadb10.6 ) plugins : comportements 2.7.3 reports 1.16.0 formcreator 2.13.9, datainjection 2.13.5 fields 1.21.9
Offline
Oui c'est complet j'ai juste caché le ROOT de mon lien
Offline
quelle version de GLPI ?
vous avez un glpi en anglais ?
le résultat affiché ne semble pas être une réponse de GLPI glpi renvoie juste un tableau
par exemple si je mets un mauvais user_token la réponse est
Array ( [0] => ERROR_GLPI_LOGIN_USER_TOKEN [1] => le paramètre user_token semble incorrect )
Trouver la panne avant de réparer...
GLPI10.0.16 (ubuntu 22.04 PHP8.1 Mariadb10.6 ) plugins : comportements 2.7.3 reports 1.16.0 formcreator 2.13.9, datainjection 2.13.5 fields 1.21.9
Offline
GLPI 9.4.2
et pour vous c'est une erreur à quelle niveau
Offline
avez vous essayé de joindre l'API simplement avec un navigateur www.monglpi/apirest.php ?
Trouver la panne avant de réparer...
GLPI10.0.16 (ubuntu 22.04 PHP8.1 Mariadb10.6 ) plugins : comportements 2.7.3 reports 1.16.0 formcreator 2.13.9, datainjection 2.13.5 fields 1.21.9
Offline
oui et ça me donne suivant :
["ERROR_APP_TOKEN_PARAMETERS_MISSING","missing parameter app_token; view documentation in your browser at https://glpi/glpi/apirest.php/#ERROR_APP_TOKEN_PARAMETERS_MISSING"]
j'ai trouver qu'il y'a peut etre des probleme d'authentification dans le serveur sachant que c'est sur un IIS et non pas un apache
Offline
surprenant, car l'url glpi/apirest.php sans autre paramètre renvoie normalement la documentation de l'API. sans authentification. il suffit que votre IP soit dans les plages autorisées. ( mais je ne suis pas spécialiste IIS)
Trouver la panne avant de réparer...
GLPI10.0.16 (ubuntu 22.04 PHP8.1 Mariadb10.6 ) plugins : comportements 2.7.3 reports 1.16.0 formcreator 2.13.9, datainjection 2.13.5 fields 1.21.9
Offline
elle l'est déjà mais toujours le même problème
Offline
Vous avez vu ,?Il y a 2 fois glpi dans l url....
Trouver la panne avant de réparer...
GLPI10.0.16 (ubuntu 22.04 PHP8.1 Mariadb10.6 ) plugins : comportements 2.7.3 reports 1.16.0 formcreator 2.13.9, datainjection 2.13.5 fields 1.21.9
Offline
Pages: 1