.NET Web API 2 OWIN-Inhaber-Token-Authentifizierung

Ich implementiere eine Web API 2-Dienstarchitektur in meiner .NET-Webanwendung. Der Client, der die Anforderungen verarbeitet, ist reines Javascript, kein MVC / ASP.NET. Ich verwende OWIN, um zu versuchen, die Tokenauthentifizierung gemäß diesem Artikel zu aktivierenOWIN-Bearer-Token-Authentifizierung mit Web-API-Beispiel. Beim Authentifizierungsschritt nach seiner Autorisierung scheint mir etwas zu fehlen.

Mein Login sieht so aus:

    [HttpPost]
    [AllowAnonymous]
    [Route("api/account/login")]
    public HttpResponseMessage Login(LoginBindingModel login)
    {
        // todo: add auth
        if (login.UserName == "[email protected]" && login.Password == "a")
        {
            var identity = new ClaimsIdentity(Startup.OAuthBearerOptions.AuthenticationType);
            identity.AddClaim(new Claim(ClaimTypes.Name, login.UserName));

            AuthenticationTicket ticket = new AuthenticationTicket(identity, new AuthenticationProperties());
            var currentUtc = new SystemClock().UtcNow;
            ticket.Properties.IssuedUtc = currentUtc;
            ticket.Properties.ExpiresUtc = currentUtc.Add(TimeSpan.FromMinutes(30));

            DefaultRequestHeaders.Authorization = new AuthenticationHeaderValue("Bearer", accessToken); 

            return new HttpResponseMessage(HttpStatusCode.OK)
            {
                Content = new ObjectContent<object>(new  
                { 
                    UserName = login.UserName,
                    AccessToken = Startup.OAuthBearerOptions.AccessTokenFormat.Protect(ticket)
                }, Configuration.Formatters.JsonFormatter)
            };
        }

        return new HttpResponseMessage(HttpStatusCode.BadRequest);
    }

Es kehrt zurück

{
   accessToken: "TsJW9rh1ZgU9CjVWZd_3a855Gmjy6vbkit4yQ8EcBNU1-pSzNA_-_iLuKP3Uw88rSUmjQ7HotkLc78ADh3UHA3o7zd2Ne2PZilG4t3KdldjjO41GEQubG2NsM3ZBHW7uZI8VMDSGEce8rYuqj1XQbZzVv90zjOs4nFngCHHeN3PowR6cDUd8yr3VBLdZnXOYjiiuCF3_XlHGgrxUogkBSQ",
   userName: "[email protected]"
}

Dann versuche ich den HTTP-Header zu setzenBearer auf weitere Anfragen in AngularJS wie:

$http.defaults.headers.common.Bearer = response.accessToken;

zu einer API wie:

    [HttpGet]
    [Route("api/account/profile")]
    [Authorize]
    public HttpResponseMessage Profile()
    {
        return new HttpResponseMessage(HttpStatusCode.OK)
        {
            Content = new ObjectContent<object>(new
            {
                UserName = User.Identity.Name
            }, Configuration.Formatters.JsonFormatter)
        };
    }

Aber egal was ich mache, dieser Dienst ist "nicht autorisiert". Vermisse ich hier etwas?

Antworten auf die Frage(2)

Ihre Antwort auf die Frage