oidc-server-mock icon indicating copy to clipboard operation
oidc-server-mock copied to clipboard

Configurable Mock Server for OpenId Connect

Results 14 oidc-server-mock issues
Sort by recently updated
recently updated
newest added

I am from testing background, and needed some information I have setup oidc mock for automated test execution as we cant use SSO login in docker/container test env. My question...

https://github.com/Soluto/oidc-server-mock/blob/1b8405635311d8aeba8e77165f40d75b91f20eba/src/Program.cs#L78 this prevents from having an SSL termination proxy in front of the mock server.

Hello, I'm just tring to deploy this oidc-mock-server behind an apache2 reverse proxy. But I have some problems regarding the BasePath of the application. I configured this json like your...

Facing this issue while trying to build the application locally ![image](https://github.com/Soluto/oidc-server-mock/assets/97300940/a36383a5-0e8d-4bf9-9a30-e397edd20534)

This has been raised before but I didn't get a resolution on that page. On the Identity server console page, this is the second link from the top. Clicking this...

When I put the JWT's in jwt.io I see that the expiration and the issue date are the same: ```json "iat": 1679536376, "exp": 1679539976, ``` However, in my configuration for...

I believe as it stands the OIDC server mock uses session cookies. Is there a configuration value to convince it to use persistent cookies on login?

Our tests started to fail when we upgraded from v0.8.6 to v0.9.0. When we brought this up in docker, the status would go from health: starting to unhealthy soon after,...

Additional quick start for docker easily deploy to aws via [copilot](https://aws.github.io/copilot-cli/docs/overview/) ``` copilot init --app oidc-mock \ --name oidc-mock-server \ --type 'Request-Driven Web Service' \ --dockerfile './Dockerfile' \ --deploy ```

Im trying to test OIDC flow on my local. I have next configuration: - Im using the latest docker image and this is my `docker-compose`: ``` oidc-server-mock: container_name: oidc-server-mock image:...