autoriser un utilisateur à se connecter à l'API
Vous devez envoyer un cookie d'authentification par formulaire valide avec la demande. Ce cookie est généralement envoyé par le serveur lors de l'authentification ( LogOn
action) en appelant la [FormsAuthentication.SetAuthCookie
méthode (voir MSDN ).
Le client doit donc effectuer 2 étapes:
- Envoyez une requête HTTP à une
LogOn
action en envoyant le nom d'utilisateur et le mot de passe. À son tour, cette action appellera la FormsAuthentication.SetAuthCookie
méthode (au cas où les informations d'identification sont valides) qui à son tour définira le cookie d'authentification par formulaire dans la réponse.
- Envoyez une requête HTTP à une
[Authorize]
action protégée en envoyant le cookie d'authentification par formulaire récupéré lors de la première requête.
Prenons un exemple. Supposons que vous ayez 2 contrôleurs d'API définis dans votre application Web:
Le premier responsable de la gestion de l'authentification:
public class AccountController : ApiController
{
public bool Post(LogOnModel model)
{
if (model.Username == "john" && model.Password == "secret")
{
FormsAuthentication.SetAuthCookie(model.Username, false);
return true;
}
return false;
}
}
et le second contenant des actions protégées que seuls les utilisateurs autorisés peuvent voir:
[Authorize]
public class UsersController : ApiController
{
public string Get()
{
return "This is a top secret material that only authorized users can see";
}
}
Nous pourrions maintenant écrire une application cliente utilisant cette API. Voici un exemple d'application console trivial (assurez-vous d'avoir installé les packages Microsoft.AspNet.WebApi.Client
et Microsoft.Net.Http
NuGet):
using System;
using System.Net.Http;
using System.Threading;
class Program
{
static void Main()
{
using (var httpClient = new HttpClient())
{
var response = httpClient.PostAsJsonAsync(
"http://localhost:26845/api/account",
new { username = "john", password = "secret" },
CancellationToken.None
).Result;
response.EnsureSuccessStatusCode();
bool success = response.Content.ReadAsAsync<bool>().Result;
if (success)
{
var secret = httpClient.GetStringAsync("http://localhost:26845/api/users");
Console.WriteLine(secret.Result);
}
else
{
Console.WriteLine("Sorry you provided wrong credentials");
}
}
}
}
Et voici à quoi ressemblent les 2 requêtes HTTP sur le fil:
Demande d'authentification:
POST /api/account HTTP/1.1
Content-Type: application/json; charset=utf-8
Host: localhost:26845
Content-Length: 39
Connection: Keep-Alive
{"username":"john","password":"secret"}
Réponse d'authentification:
HTTP/1.1 200 OK
Server: ASP.NET Development Server/10.0.0.0
Date: Wed, 13 Jun 2012 13:24:41 GMT
X-AspNet-Version: 4.0.30319
Set-Cookie: .ASPXAUTH=REMOVED FOR BREVITY; path=/; HttpOnly
Cache-Control: no-cache
Pragma: no-cache
Expires: -1
Content-Type: application/json; charset=utf-8
Content-Length: 4
Connection: Close
true
Demande de données protégées:
GET /api/users HTTP/1.1
Host: localhost:26845
Cookie: .ASPXAUTH=REMOVED FOR BREVITY
Réponse pour les données protégées:
HTTP/1.1 200 OK
Server: ASP.NET Development Server/10.0.0.0
Date: Wed, 13 Jun 2012 13:24:41 GMT
X-AspNet-Version: 4.0.30319
Cache-Control: no-cache
Pragma: no-cache
Expires: -1
Content-Type: application/json; charset=utf-8
Content-Length: 66
Connection: Close
"This is a top secret material that only authorized users can see"