Azure ADを使用して認証を実装しようとしています。アプリケーション設定では、返信URLをhttps://example.com/myapp/login.aspxと設定しています。 私がログインするとhttps://example.comにリダイレクトされ、指定されていないURL https://example.com/myapp/login.aspxAzure Active Directoryの返信URLがルートにリダイレクト
どのように適切なURLでリダイレクトされることを確認できますか?以下はスタートアップのコードです。
public void Configuration(IAppBuilder app)
{
app.SetDefaultSignInAsAuthenticationType(CookieAuthenticationDefaults.AuthenticationType);
app.UseCookieAuthentication(new CookieAuthenticationOptions());
app.UseOpenIdConnectAuthentication(
new OpenIdConnectAuthenticationOptions
{
ClientId = ConfigurationManager.AppSettings["owin:ClientId"].ToString(),
Authority = "https://login.microsoftonline.com/yz5036e3-2951-4c11-af4d-da019fa6a57d",
RedirectUri = ConfigurationManager.AppSettings["RedirectUri"].ToString()
});
}