Error - 404
Opened this issue · 2 comments
Deleted user commented
Getting a 404 No Success error code when I followed the steps and downloaded the sample application. The exception is thrown at...
... using System;
using System.Threading.Tasks;
using Microsoft.Owin;
using Owin;
using Microsoft.Owin.Security.ActiveDirectory;
using System.Configuration;
namespace TodoSPA
{
public partial class Startup
{
public void ConfigureAuth(IAppBuilder app)
{
app.UseWindowsAzureActiveDirectoryBearerAuthentication(
new WindowsAzureActiveDirectoryBearerAuthenticationOptions
{
Audience = ConfigurationManager.AppSettings["ida:Audience"],
Tenant = ConfigurationManager.AppSettings["ida:Tenant"]
});
}
}
}
Deleted user commented
Manually installing the active directory NuGet from the console line resolved the issue.