Identity Server 4 and backoffice external login in Umbraco 9
Hi,
I'm trying to retrieve some information about the possibility to implement Identity Server 4 for the backoffice login in Umbraco 9.
I saw that in ConfigureServices() it's possible to use AddBackOfficeExternalLogins(). Is there any reference guide to implement a third party backoffice login service? Any suggestions?
This is the code I used on that other discussion you linked to.
It worked for me using Azure AD B2C, but I would imagine the config is very similar for Identity Server 4.
Its not fully tested and Im sure someone will post something better, but might be of use to you.
services.AddUmbraco(_env, _config)
.AddBackOffice()
// new code
.AddBackOfficeExternalLogins(builder =>
builder.AddBackOfficeLogin(
new BackOfficeExternalLoginProviderOptions(
"btn-primary", // button stype
"fa-windows", // icon
new ExternalSignInAutoLinkOptions(
true, // autolink
null, // default groups,
null, //default culture,
true), //allowManualLinking
true, // deny local login
false, // autoredirect local login to external login
null), // custom backoffice view
build =>
build.AddOpenIdConnect(
build.SchemeForBackOffice(OpenIdConnectDefaults.AuthenticationScheme),
"AD B2C",
options =>
{
options.RemoteSignOutPath = "/oidc-signout";
options.MetadataAddress = "path-to-my /.well-known";
options.ClientId = "my-client-id";
options.SignedOutRedirectUri = "https://myumbracosite.com/umbraco";
options.TokenValidationParameters = new Microsoft.IdentityModel.Tokens.TokenValidationParameters
{
NameClaimType = "name"
};
}
)
)
)
// end of new code
.AddWebsite()
.AddComposers()
.Build();
"autolink" is what is used to automatically create an umbraco user when someone signs in with your external provider. Without this, you need to create each umbraco user first, ask them to log in and manually perform a link to their external identity.
Thanks for sharing this for BackOffice. Do you have any samples to share for Umbraco 9 AzureB2C Auth for Members? Appreciate any help you can provide, thanks.
Identity Server 4 and backoffice external login in Umbraco 9
Hi,
I'm trying to retrieve some information about the possibility to implement Identity Server 4 for the backoffice login in Umbraco 9.
I saw that in
ConfigureServices()
it's possible to useAddBackOfficeExternalLogins()
. Is there any reference guide to implement a third party backoffice login service? Any suggestions?I also found this discussion that seems interesting.
Thank you, Marco
Hi Marco,
This is the code I used on that other discussion you linked to. It worked for me using Azure AD B2C, but I would imagine the config is very similar for Identity Server 4.
Its not fully tested and Im sure someone will post something better, but might be of use to you.
"autolink" is what is used to automatically create an umbraco user when someone signs in with your external provider. Without this, you need to create each umbraco user first, ask them to log in and manually perform a link to their external identity.
Hi Keith,
thank you for your reply.
This snippet was useful, but I couldn't test it because of this bug in Umbraco 9 RC1 (here more details), that should be fixed in the RC2 release.
I have just updated my solution to RC2, and
builder.AddBackOfficeLogin(...)
now has the parameters order inverted, from:to:
So your code snippet will change like this:
Thank you
In case you want to use AzureAd to authenticate backoffice users I have working code based off Shannon's pull here
Thank you Gunnar for your reply. I will try also this code.
Marco
Hi Gunnar,
I'm not able to get this code working I can't reference .AddMicrosoftIdentityWebApp(options => as this just says it does not exist.
Can you give any further information on this? or what i might be missing?
THanks Dale
What am I missing here?
You are likely missing Microsoft.Identity.Web in my code i was using 1.15.2
Gunnar
Thanks for sharing this for BackOffice. Do you have any samples to share for Umbraco 9 AzureB2C Auth for Members? Appreciate any help you can provide, thanks.
Hi John,
I have created an example for members here: https://www.jeroenbreuer.nl/blog/released-umbraco-openid-connect-example-package/
Jeroen
is working on a reply...
This forum is in read-only mode while we transition to the new forum.
You can continue this topic on the new forum by tapping the "Continue discussion" link below.