Questions tagged [duende]

29 questions
0
votes
0 answers

Identity Server missing ReturnUrl parameter on /connect/authorize

I'm using Duende Identity Server library in C#, and I've configured a Client that has the allowed grant type of code. Here is that client configuration: This IdentityServer hosts a login page that acts as a Single Sign On for other applications.…
RuiRafael
  • 1
  • 1
0
votes
0 answers

Can't obtain JWT using Resource Owner Flow in Duende

I'm POST'ing to the token endpoint using Resource Owner Flow (as docs explain), providing the following payload (as…
Konrad Viltersten
  • 36,151
  • 76
  • 250
  • 438
0
votes
1 answer

Can we support different password hashing algorithm in duende identity server

Currently I'm using Microsoft.AspNetCore.Identity.PasswordHasher for doing the password hash when I add an user to the system and it works well. But in order to change that methodology and use a customized password hashing algorithm what should I do…
0
votes
1 answer

Blazor WebAssembly app with Identity Server to docker with reverse proxy

I created a project Blazor Webassembly with Authentification type : Individual accounts. The framework use IdentityServer by Duende.(I have a community licence) The app works fine in my local environment but when I deploy the app in production it…
0
votes
1 answer

User Impersonation in Duende IdentityServer

I am aware the user impersonation question has already been asked several times. Unfortunately, none of the questions I read so far provided a reproducible guideline or overall concept how to do this in a secure way. Since every action needs to be…
0
votes
1 answer

How to display IdentityServer endpoints in SwaggerUI with Swashbucke

I have an ASPNET Core 6 service which uses Duende IdentityServer 6, which includes several endpoints such as /connect/token and /connect/authorize. I need these endpoints to show up in my Swagger UI page, however I cannot find a way to get them to…
0
votes
1 answer

How to Get token from Duende Identity Server (IdentityServer4)

There are a few days I am reading the Duende Identity server (IdentityServer4) so I know about the different concepts and their usages such as Scopes, Resources, Client ... The area I am confused about it is the clients. So I integrated the…
Ravaei
  • 8
  • 6
0
votes
0 answers

Duende.BFF with Strava OAuth: getting data from json body after exchanging token for access and refresh token

I'm developing a Hosted Blazor WASM application that uses Strava's OAuth for authentication. Because I don't want to store the access and refresh tokens in the browser I am using Duende.BFF. My program.cs is configured like this: { …
0
votes
0 answers

Confused by latest ASP.NET Core 6 React SPA template with individual authentication

I think this could be reproduced on any .NET 6 capable machine, within 1-2 minutes... Context I am trying the get work the ASP.NET Core 6 React SPA template with Identity authentication. Based on the Authentication and authorization for SPAs which…
0
votes
1 answer

Login from Angular app using Duende BFF login endpoint

How to implement login authentication using Angular and Duende BFF? I've set up the BFF client in Duende IS and when I hit BFF login from my angular app, it works but it redirects to BFF, not the angular app. How can I achieve this?
0
votes
1 answer

Http angular client connection keep reloading in Duende IdentityServer v6

I have an Angular 14 with an OIDC client application that connects to Duende IdentityServer v6 using the OIDC client. The client application is running with HTTP and Duende IdentityServer is running on HTTPS on local development during the sign-in…
San Jaisy
  • 15,327
  • 34
  • 171
  • 290
0
votes
1 answer

Duende BFF unauthorized client error when calling Identity Server. Grant Type code changes to Grant Type Client Credentials

Set up is Identity Provider server with Duende ver.6, with registered client with Grant Type Code new Client { ClientId = "test_client", RequireClientSecret = false, …
newLoop
  • 149
  • 11
0
votes
1 answer

Keeping Identity Server & Authentication in separate projects

I have several client applications I want to put under Identity Server Authentication for which I'm using Duende IdentityServer. So, my Identity Server Project consists of the following. Code blocks to configure the Identity Server An ASP.NET MVC…
0
votes
1 answer

Retrieving the "sid" claim from the IdP EndSessionEndpoint in IdentityServer 5?

I've got a working IdP using the Duende IdentityServer 5.0.4 middleware. In a web app, I have a logout link that performs a 302 redirect to the EndSessionEndpoint retrieved through the discovery client. On the IdP's logout confirmation page, the…
David Montgomery
  • 1,618
  • 15
  • 28
1
2