Authentification utilisateur

Authentifie un utilisateur et récupère un token

Requête:

POST /hubs/{hub}/_vti_bin/Authentication.asmx

Entêtes:

SOAPAction: http://schemas.microsoft.com/sharepoint/soap/Login
Content-Type: text/xml; charset=utf-8

Corps:

<?xml version="1.0" encoding="utf-8"?>
<soap:Envelope xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/">
   <soap:Body>
      <Login xmlns="http://schemas.microsoft.com/sharepoint/soap/">
         <username>Login</username>
         <password>Password</password>
      </Login>
   </soap:Body>
</soap:Envelope>

Vous devez remplacer les valeurs Login et Password avec vos paramètres.

Réponse:

Format: XML

<?xml version="1.0" encoding="utf-8"?>
<soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema">
   <soap:Body>
      <LoginResponse xmlns="http://schemas.microsoft.com/sharepoint/soap/">
         <LoginResult>
            <CookieName>FedAuth</CookieName>
            <ErrorCode>NoError</ErrorCode>
         </LoginResult>
      </LoginResponse>
   </soap:Body>
</soap:Envelope>
Le cookie FedAuth doit être conservé pour les futurs appels API.

Support