This sample shows how to build a .Net MVC web application that uses OpenID Connect to sign-in users from a single Azure Active Directory tenant, using the ASP.Net 5 OpenID Connect middleware.
For more information about how the protocols work in this scenario and other scenarios, see Authentication Scenarios for Azure AD.
Getting started is simple! To run this sample you will need:
- Visual Studio 2015 RC
- An Internet connection
- An Azure subscription (a free trial is sufficient)
Every Azure subscription has an associated Azure Active Directory tenant. If you don't already have an Azure subscription, you can get a free subscription by signing up at http://wwww.windowsazure.com. All of the Azure AD features used by this sample are available free of charge.
From your shell or command line:
git clone https://github.com/AzureADSamples/WebApp-OpenIDConnect-AspNet5.git
If you already have a user account in your Azure Active Directory tenant, you can skip to the next step. This sample will not work with a Microsoft account, so if you signed in to the Azure portal with a Microsoft account and have never created a user account in your directory before, you need to do that now. If you create an account and want to use it to sign-in to the Azure portal, don't forget to add the user account as a co-administrator of your Azure subscription.
- Sign in to the Azure management portal.
- Click on Active Directory in the left hand nav.
- Click the directory tenant where you wish to register the sample application.
- Click the Applications tab.
- In the drawer, click Add.
- Click "Add an application my organization is developing".
- Enter a friendly name for the application, for example "WebApp-OpenIDConnect-DotNet", select "Web Application and/or Web API", and click next.
- For the sign-on URL, enter the base URL for the sample, which is by default
https://localhost:44322/
. - For the App ID URI, enter
https://<your_tenant_name>/WebApp-OpenIDConnect-DotNet
, replacing<your_tenant_name>
with the name of your Azure AD tenant.
All done! Before moving on to the next step, you need to find the Client ID of your application.
- While still in the Azure portal, click the Configure tab of your application.
- Find the Client ID value and copy it to the clipboard.
- Open the solution in Visual Studio 2015.
- Open the
config.json
file. - Find the
Tenant
property and replace the value with your AAD tenant name. - Find the
ClientId
and replace the value with the Client ID from the Azure portal. - If you changed the base URL of the sample, find the app key
ida:PostLogoutRedirectUri
and replace the value with the new base URL of the sample.
Clean the solution, rebuild the solution, and run it.
Click the sign-in link on the homepage of the application to sign-in. On the Azure AD sign-in page, enter the name and password of a user account that is in your Azure AD tenant.
Coming soon.
This sample shows how to use the OpenID Connect ASP.Net 5 middleware to sign-in users from a single Azure AD tenant. The middleware is initialized in the Startup.cs
file, by passing it the Client ID of the application and the URL of the Azure AD tenant where the application is registered. The middleware then takes care of:
- Downloading the Azure AD metadata, finding the signing keys, and finding the issuer name for the tenant.
- Processing OpenID Connect sign-in responses by validating the signature and issuer in an incoming JWT, extracting the user's claims, and putting them on ClaimsPrincipal.Current.
- Integrating with the session cookie ASP.Net 5 middleware to establish a session for the user.
You can trigger the middleware to send an OpenID Connect sign-in request by decorating a class or method with the [Authorize]
attribute, or by issuing a challenge,
Context.Response.Challenge(OpenIdConnectAuthenticationDefaults.AuthenticationScheme,
new AuthenticationProperties { RedirectUri = "/" });
Similarly you can send a signout request,
Context.Authentication.SignOut(CookieAuthenticationDefaults.AuthenticationScheme);
Context.Authentication.SignOut(OpenIdConnectAuthenticationDefaults.AuthenticationScheme);
When a user is signed out, they will be redirected to the Post_Logout_Redirect_Uri
specified when the OpenID Connect middleware is initialized.
All of the middleware in this project is created as a part of the open source Asp.Net Security project.
- In Visual Studio 2015 CTP6, create a new "ASP.NET 5 Preview Starter Web" application.
- Enable SSL for the application by following the steps at the below section.
- Add the
Microsoft.AspNet.Authentication.OpenIdConnect
ASP.Net 5 middleware NuGet to the project. Remember to enable prerelease versions in the NuGet package manager. - Remove a few excess files that come with the template - they are not needed for this sample. Delete the
Migrations
folder, theViews/Account
folder, theModels
folder, and theCompiler
folder. - Replace the implementation of the
Controllers\AccountController.cs
class with the one from the project, resolving any excess or missing using statements. - In
Views\Shared
, replace the implementation of_LoginPartial.cshtml
with the one from the sample. - Replace the contents of
config.json
with the one from the sample. - Replace the contents of
Startup.cs
with the one from the sample, resolving any excess or missing using statements. - If you want the user to be required to sign-in before they can see any page of the app, then in the
HomeController
, decorate theHomeController
class with the[Authorize]
attribute. If you leave this out, the user will be able to see the home page of the app without having to sign-in first, and can click the sign-in link on that page to get signed in. - Almost done! Follow the steps in "How To Run This Sample" above to register the application in your AAD tenant.
These steps are temporarily necessary to enable SSL only for Visual Studio 2015 CTP6: First, hit F5 to run the application. Once you see the homepage, you may close the browser and stop IIS Express. In a text editor, open the file %userprofile%\documents\IISExpress\config\applicatoinhost.confg
. Find the entry for your app in the <sites>
node. Add an https protocol binding to this entry for a port between 44300 and 44399, similar to the following:
<site name="WebApplication1" id="2">
<application path="/" applicationPool="Clr4IntegratedAppPool">
<virtualDirectory path="/" physicalPath="c:\users\billhie\documents\visual studio 2015\Projects\WebApplication1\WebApplication1" />
</application>
<bindings>
<binding protocol="http" bindingInformation="*:53756:localhost" />
<binding protocol="https" bindingInformation="*:44300:localhost" />
</bindings>
</site>
Save and close the file. In Visual Studio, open the properties page of your web app. In the Debug menu, enable the Launch Browser checkbox and enter the same URL as the protocol binding you added, e.g. https://localhost:44300/
. Your app will now run at this address.
- Right-Click in project, select "Properties" or "Alt+Enter"
- In project properties window, switch to "Debug" page
- Check "Enable SSL", "Ctrl+S" to save project properties
- Copy url from text box underneath "Enable SSL" check box into "Launch Browser" text box (note: must check "Launch Browser")