Azure-Samples / active-directory-dotnet-webapp-openidconnect

A .NET MVC web application that uses OpenID Connect to sign-in users from a single Azure Active Directory tenant.
159 stars 109 forks source link

Multiple Reply-Url's #19

Closed felipepessoto closed 9 years ago

felipepessoto commented 9 years ago

In development time I want my application posting back to localhost on login, but it just consider the first reply-url configured at my AD App.

Is it expected? There is any workaround?

dstrockis commented 9 years ago

You can set the RedirectUri parameter to your desired location in OpenIdConnectAuthenticationOptions

felipepessoto commented 9 years ago

Worked! Very thanks