I\'m implementing simple login/password authentication using WebAPI/Owin 3.0. Here is my config method:
public void ConfigureAuth(IAppBuilder app) { // C
It turned out that Cookie authentication conflicts with SuppressDefaultHostAuthentication option. Disable this in WebApiConfig.cs to solve the problem.
config.SuppressDefaultHostAuthentication();