Top "Owin" questions

Open Web Interface for .NET that describes how components in a HTTP pipeline should communicate.

UseCookieAuthentication vs. UseExternalSignInCookie

I use Owin to authorize through Google oAuth. Here is how my cookies are configured: // Enable the application to use …

asp.net-mvc owin
ASP.NET Web API and OpenID Connect: how to get Access Token from Authorization Code

I try to get OpenID Connect running... A user of my Web API managed to get an Authorization Code of …

c# azure asp.net-web-api owin openid-connect
Enable CORS for Web Api 2 and OWIN token authentication

I have an ASP.NET MVC 5 webproject (localhost:81) that calls functions from my WebApi 2 project (localhost:82) using Knockoutjs, to make …

asp.net-web-api asp.net-mvc-5 cors asp.net-web-api2 owin
Registering Web API 2 external logins from multiple API clients with OWIN Identity

I would like the following architecture (I've made up the product name for this example): Web API 2 application running on …

asp.net-mvc oauth-2.0 asp.net-identity owin asp.net-web-api2
Alternative to use HttpContext in System.Web for Owin

ASP.NET authentication is now based on OWIN middleware that can be used on any OWIN-based host. ASP.NET Identity …

c# asp.net asp.net-identity owin katana
Get IPrincipal from OAuth Bearer Token in OWIN

I have successfully added OAuth to my WebAPI 2 project using OWIN. I receive tokens and can use them in the …

c# .net oauth asp.net-web-api owin
How IsPersistent works in OWIN Cookie authentication

It seems I don't understand clearly how IsPersistent in OWIN cookie authentication works, the code below is to use IsPersistent: …

c# asp.net-mvc asp.net-mvc-5 owin
IHttpActionResult and helper methods in ASP.NET Core

I'm trying to move my web api 2 project to ASP.NET 5. But I have many elements that are not present …

asp.net-web-api owin asp.net-core