512 questions
- Bountied 0
- Unanswered
- Frequent
- Score
- Trending
- Week
- Month
- Unanswered (my tags)
-1
votes
0
answers
18
views
ABP.io + OpenIddict + SAML 2.0 Integration with Zoho Customer Portal [closed]
I am working on a .NET Core ABP.IO project as a microservice, and I want to integrate SAML for the Zoho customer portal. My project is set up as the Identity Provider (IdP). I have added a SAML ...
0
votes
0
answers
72
views
Set the authentication server URL dynamically in the openiddict client
I am developing an authentication server applicationu sing openiddict 5.8.0 in AspNetCore.
The authentication server application is hosted on an IIS server which is accessible both via internal ...
0
votes
0
answers
134
views
How to make Dockerized ASP.NET Core 9 Web API trust self-signed signing certificate?
I have two ASP.NET Core 9 Web APIs running in Docker:
Identity API (OpenIddict server) – issues JWT tokens
Voucher API (protected resource) – validates JWT tokens using AddJwtBearer
Identity API ...
0
votes
0
answers
200
views
Configure .NET Core 9 with OpenIddict in Docker
I am containerizing an ASP.NET Core 9 Web API with OpenIddict and running it in Docker. Following the OpenIddict recommendations, I created two RSA certificates (separate from the HTTPS certificate): ...
2
votes
0
answers
110
views
IDX10500: Signature validation failed. No security keys were provided - OpenIddict Identity API integration with API
I'm integrating an ASP.NET Core 9 Web API with an OpenIddict-based Identity API for JWT authentication using AddJwtBearer.
While I'm calling protected endpoint, I'm getting the following error:
...
0
votes
1
answer
156
views
Propagating OIDC third-party authentication failure to client application, in OpenIddict
We’re developing an authentication/identity server, based on .NET/C# & OpenIddict Server. We delegate authentication to a third-party server (using OpenIddict Client), currently just one provider, ...
0
votes
0
answers
67
views
OpenIddict asociate refresh tokens with session
I’m migrating from IdentityServer4 to OpenIddict. Previously, I had functionality that associated refresh tokens with sign-in sessions. This was done so that refresh tokens could be revoked if the ...
0
votes
0
answers
87
views
How to reuse and extend the existing Refresh Token when using refresh_token grant in OpenIddict without issuing a new one?
I'm using OpenIddict 6.3.0 with ASP.NET Core 8, and I want to customize the behavior when using the refresh_token grant.
✅ Goal:
When a refresh_token is used:
I want to reuse the existing refresh ...
0
votes
1
answer
172
views
OpenIddict v6: A grant type must be specified when triggering authentication demands from endpoints that are not managed by the OpenIddict client
I seem to be getting this strange error on my BFF (backend for frontend) when I try trigger the authorization flow. I get the message: "A grant type must be specified when triggering ...
0
votes
1
answer
212
views
openiddict - "The signing key associated to the specified token was not found"
I'm using openiddict version 6 (latest version) in dotnet 9. I have a login server that is successfully handling username/password authentication as well as Google and Facebook auth correctly. I'm ...
1
vote
0
answers
146
views
Configuring Multiple Token Formats and Endpoints in OpenIddict
I have an authorization server that utilizes OpenIddict version 6.2.1, and it is currently working great.
The server exposes /connect/token and /connect/authorize endpoints that support the ...
Fylix's user avatar
- 2,765
0
votes
0
answers
84
views
OpenIdDict using PKCS#11 / HSM interface?
I am working on a project that uses OpenIdDict für user authentication, thus, generating and validating JWTs (Java web tokens, HTTP header "Bearer").
Currently, the prototype relies on a ...
0
votes
0
answers
95
views
Unable to make authentication work with OIDC and local identity server
My goal is to host both Identity provider (IdP) and MyApp as subdomains on same server.
I have a local OpenIddict server hosted on login.mywebsite.com.
I have a Blazor web app (Interactivity Auto) ...
0
votes
0
answers
83
views
How to handle AppleSignInAuthenticator result to create or login with my Identity Server
I have a working application using OpenIdDict back end with support for internal registration, Login with Google, and Login with Apple.
From a web page, everything works beautifully, however, in my ...
0
votes
0
answers
52
views
AuthorizationCode flow working using browser but not using Postman
I have an Authentication Server application (AuthServer) using OpenIdDict.
And a client application (ClientApp) which has a simple controller action:
Startup client configuration:
builder.Services
....