Test your SAML/SCIM integration without setting up a full-blown Identity Provider
Go to file
Ulysse Carion 683d9222cb
scim: match /Users results in "Resources" or "resources" (#15)
This PR has the SCIM matching logic support results from a SCIM `GET
/Users` call being in `Resources` or `resources`. In practice, SCIM
servers use both, due to inconsistency in the original specification.

Closes #14.
2025-01-10 10:30:49 -08:00
public Move UI pages for app and login into pages router (#12) 2024-10-29 15:02:10 -07:00
src scim: match /Users results in "Resources" or "resources" (#15) 2025-01-10 10:30:49 -08:00
.env.development.local Move to Next.js (#2) 2024-10-03 09:57:43 -07:00
.gitignore Move to Next.js (#2) 2024-10-03 09:57:43 -07:00
.nvmrc scim: match /Users results in "Resources" or "resources" (#15) 2025-01-10 10:30:49 -08:00
.prettierignore spike: create assertions 2024-05-13 16:19:21 -07:00
.prettierrc.json spike: create assertions 2024-05-13 16:19:21 -07:00
components.json Move to Next.js (#2) 2024-10-03 09:57:43 -07:00
LICENSE Nits + index page (#5) 2024-10-10 11:14:10 -07:00
next-env.d.ts Move UI pages for app and login into pages router (#12) 2024-10-29 15:02:10 -07:00
next.config.js Move to Next.js (#2) 2024-10-03 09:57:43 -07:00
package-lock.json Move UI pages for app and login into pages router (#12) 2024-10-29 15:02:10 -07:00
package.json Move UI pages for app and login into pages router (#12) 2024-10-29 15:02:10 -07:00
postcss.config.js Move to Next.js (#2) 2024-10-03 09:57:43 -07:00
README.md Add screenshot to README (#7) 2024-10-15 11:12:01 -07:00
screenshot.png Add screenshot to README (#7) 2024-10-15 11:12:01 -07:00
tailwind.config.js Move to Next.js (#2) 2024-10-03 09:57:43 -07:00
tsconfig.json Move to Next.js (#2) 2024-10-03 09:57:43 -07:00

DummyIDP

DummyIDP is a website you can use to test your application's SAML and SCIM support end-to-end. From your application's perspective, it's exactly like the identity provider ("IDP") your customers use, but unlike commercial IDPs there's no "input your email" or "talk to sales" step to use DummyIDP.

DummyIDP implements the "Identity Provider" side of the SAML and SCIM protocols. It is meant for use as a way to test your application's support for the "Service Provider" side of the SAML and SCIM protocols. See "DummyIDP Security Posture" for details.

Local development / self-hosting

DummyIDP is available for free online at https://dummyidp.com. You can also self-host it or hack on it locally.

DummyIDP is a Next.js application. It is deployed in production on Vercel. You can hack on it yourself by running:

npm install
npm run dev