commentaire nul

This commit is contained in:
2016-06-07 00:20:05 +02:00
parent cac49facaa
commit 46f5c107b8
10 changed files with 545 additions and 16 deletions

View File

@ -1,18 +1,16 @@

using Microsoft.AspNet.Authentication.OpenIdConnect;
using Microsoft.AspNet.Http.Authentication;
using Microsoft.AspNet.Mvc;
namespace Mvc.Client.Controllers {
public class AuthenticationController : Controller {
[HttpGet("~/signin")]
public ActionResult SignIn() {
// Instruct the OIDC client middleware to redirect the user agent to the identity provider.
// Note: the authenticationType parameter must match the value configured in Startup.cs
var properties = new AuthenticationProperties { RedirectUri = "http://localhost:5002/signin-oidc" };
return new ChallengeResult(OpenIdConnectDefaults.AuthenticationScheme, properties);
var properties = new AuthenticationProperties { RedirectUri = "http://localhost:5002/signin-yavsc" };
return new ChallengeResult("yavsc", properties);
}
}