I finally got it working.
There is a Trick to it. You need to configure the Cors before the UseBearerToken
e.g.
There is a Trick to it. You need to configure the Cors before the UseBearerToken
e.g.
public void Configuration(IAppBuilder app)
{
// This must come first to intercept the /Token requests
app.UseCors(corsOptions);
app.UseOAuthBearerTokens(OAuthOptions);
}