I have authentication done using external provider in Ids3. After the user authenticates, my MVC home page is loaded, which bootstraps the angular app as such:
@section AppScripts {
@Scripts.Render("~/bundles/Swagger")
@Scripts.Render("~/bundles/DevPortalApp")
}
When the user authenticates through one of the external providers, I am supposed to redirect to a specific page in angular:
https://myaddress/DevPortalApp/something
The problem is that with regular redirects I am stuck in the authentication loop. How can I redirect from my Home controller to a specific angular page?
var externalLogin = accessToken.externalLogin;
// Check if its from external
if (externalLogin.Value != null)
{
var isValid = await externalLoginService.ValidateAccessToken(accessToken);
RedirectToAction("~/#/myURLRedirect");
}
You need to use angular router from here, in shortly you can use
$state.go('your-new-view')
In your app.js file create the states list-
And in your home controller you can just add redirect with
$state.go('someState')