Questions tagged [duende-identity-server]
173 questions
0
votes
0 answers
how to implement dynamic external identity providers (AddOpenIdConnect) using duende identity server
Is there any way to add external identity providers from database, and show the providers based on the user access?
I can add multiple external identity providers in startup.cs, but I want to load it from DB instead of static values like below
…

roczstar
- 43
- 2
- 6
0
votes
0 answers
Issue with YARP and Kubernetes Deployment: BFF Application unable to redirect to Identity Server login page via Reverse Proxy
I have set up an Identity Server and BFF (Backend for Frontend) application within the same Kubernetes pod, utilizing multiple containers.
The problem I am facing is that when I access the "bff/login" endpoint, the BFF application should redirect me…

Abdullah Saeed
- 1
- 1
0
votes
0 answers
Separation of Concerns - .Net Code Identity + Duende.IdentityServer good practice recommendation
Its ok if I call some services of the domain after a user registers?
I'm having some trouble when trying not to add the dependency to .net Core Identity into my domain model.
However I'm thinking I can make the actions I need for my domain app by…

freifede
- 81
- 6
0
votes
0 answers
Client authentication in identity server
I'm developing an authentication system in which i can create clients the client is an application with possible types (m2m native regular web app or single page application)
in the m2m application i want to define the authentication method (client…

xxxyyy
- 9
- 3
0
votes
0 answers
Dynamic identity provider
I have to realize a dynamic identity provider on my project the idea is very simple (the admin of the system can add any identity provider to enable the user's login with this provider for example he can add google than users can login to the system…

xxxyyy
- 9
- 3
0
votes
1 answer
External identity provider
Im using duende identity server 4
and I have a requirement to create a login with facebook and google so first I setup my project and user the quickstart of duende software and i wast able to realize the requirement but i pretend that when i login…

xxxyyy
- 9
- 3
0
votes
0 answers
RBAC in ASP.NET using Identity system
I am using ASP.NET Identity with Identity Server to build an authentication system, and I want to assign each role a set of permissions. However, I am confused about how to store these permissions correctly.
I try to store them as claims for the…

xxxyyy
- 9
- 3
0
votes
0 answers
persistedGrant in identity server 4
im using identity server 4 with asp .net identity and i want to display all the authorized applications for each user user for example :
user A : app1 app3
user B : app1
user C : app2
so in order to reach this i try to inject the…

xxxyyy
- 9
- 3
0
votes
0 answers
How to implement .Net 4.5 SAML service provider for Identity/Duende Server 6
I have successfully set up Identity Server utilizing the SAML protocol and incorporated a service provider for SAML-based login through the RSK SAML plugin.
Although I found a suitable plugin for the .NET Core framework, we have been unable to…

Rohit
- 330
- 1
- 5
- 16
0
votes
0 answers
403 Issue between Azure App Service Authentication and Duende Identity Server
We have an existing .NET 6 Web Application, protected with Duende Identity Server 6, running on Azure App Service. This works flawlessly.
We want to add Azure App Service Authentication in front of the this Azure App Service. That way we can enforce…

JonHendrix
- 933
- 15
- 28
0
votes
0 answers
Email confirmation token is not working in Identity Server
I am trying to implement email confirmation/verification feature for my identity server users. In my case i have 2 apps, one is for Web API to add Identity server users and another is for a web app to provide the login to the users.
I have followed…

Aditya
- 1
- 2
0
votes
0 answers
Using google external login with IdentityServer for multiple google accounts
We are using Duende IdentityServer to authenticate users. Several people trying to log in have multiple Google accounts that they would like to use when logging into our server. Usually the use case is that the person has a personal gmail account…

Brian
- 1,675
- 3
- 19
- 29
0
votes
1 answer
AddSigningCredentials is working with Expired certiticate
As per my implementation, we are creating the certificate in the pfx file and using that in the startup "AddSigningCredentials" method. Before assigning the certificate to this method we are checking the whether the certificate has expired or not.…

Aditya
- 1
- 2
0
votes
0 answers
Infinite redirect when moving an app service for an app and an app service for its identity server to azure front door from standalone app services
We have two app services that make up our app - app.mydomain.com and an identity server (duende identity server) on auth.mydomain.com. After setting up azure front door, and creating an endpoint for app.mydomain.com and one for auth.mydomain.com…

user1368182
- 423
- 7
- 18
0
votes
0 answers
Identity Server - HttpContext.User.Claims not showing all claims when Using add cookies
I have 2 projects:
Identity Server
and C# Razor Client.
Identity Server is configured to pass some custom claims inside the access token.
IEnumerable IdentityResources =
new List
{
…

Style
- 67
- 9