{"id":19850190,"url":"https://github.com/authsignal/identity-server-example","last_synced_at":"2026-02-23T04:32:49.201Z","repository":{"id":197904132,"uuid":"699080160","full_name":"authsignal/identity-server-example","owner":"authsignal","description":"Example integrating Authsignal with Duende Identity Server","archived":false,"fork":false,"pushed_at":"2025-04-01T03:48:26.000Z","size":2165,"stargazers_count":2,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-12-01T09:49:47.207Z","etag":null,"topics":["authentication","authsignal","csharp","dotnet","duende","identityserver","mfa","passkeys","passwordless","webauthn"],"latest_commit_sha":null,"homepage":"https://docs.authsignal.com/integrations/identityserver","language":"C#","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/authsignal.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null}},"created_at":"2023-10-01T21:15:42.000Z","updated_at":"2025-04-01T03:48:25.000Z","dependencies_parsed_at":"2025-06-04T22:07:05.670Z","dependency_job_id":"2ec542cc-d205-4579-93aa-62317c970663","html_url":"https://github.com/authsignal/identity-server-example","commit_stats":null,"previous_names":["authsignal/identity-server-example"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/authsignal/identity-server-example","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/authsignal%2Fidentity-server-example","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/authsignal%2Fidentity-server-example/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/authsignal%2Fidentity-server-example/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/authsignal%2Fidentity-server-example/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/authsignal","download_url":"https://codeload.github.com/authsignal/identity-server-example/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/authsignal%2Fidentity-server-example/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":29738079,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-02-23T02:24:00.660Z","status":"ssl_error","status_checked_at":"2026-02-23T02:22:56.087Z","response_time":90,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.6:443 state=error: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["authentication","authsignal","csharp","dotnet","duende","identityserver","mfa","passkeys","passwordless","webauthn"],"created_at":"2024-11-12T13:24:43.034Z","updated_at":"2026-02-23T04:32:49.156Z","avatar_url":"https://github.com/authsignal.png","language":"C#","funding_links":[],"categories":[],"sub_categories":[],"readme":"\u003cimg width=\"1070\" alt=\"Authsignal\" src=\"https://raw.githubusercontent.com/authsignal/identity-server-example/main/.github/images/authsignal.png\"\u003e\n\n# Authsignal + IdentityServer Example\n\n## Overview\n\n[Duende IdentityServer](https://duendesoftware.com/products/identityserver) is an ASP.NET Core framework for building your own login server in compliance with OpenID Connect and OAuth 2.0 standards.\n\nThis example shows how to integrate IdentityServer with Authsignal:\n\n1. Adding MFA to a traditional username \u0026 password login flow\n2. Allowing passkey login as an secure and user-friendly alternative to username \u0026 password\n\nAuthsignal can be used to facilitate both MFA on login (step 1) and passwordless login (step 2).\n\nFor the full step-by-step guide check out our [docs](https://docs.authsignal.com/integrations/identityserver).\n\n## Running the Application\n\n### Prerequisites\n- [Authsignal Account](https://portal.authsignal.com/)\n- [.NET SDK](https://dotnet.microsoft.com/download/dotnet/6.0)\n- [Authsignal Dotnet SDK](https://github.com/authsignal/authsignal-dotnet)\n\n### Configuration\n   - Create an account at [Authsignal](https://portal.authsignal.com/) and grab your Tenant ID, API host and API Key Secret.\n   - Add your `AuthsignalSecret` (API Key Secret) to both project's appsettings.json files:\n     - src/IdentityServer/appsettings.json\n     - src/WebClient/appsettings.json\n\n### Running the Application\n1. Clone the repository\n   ```\n   git clone https://github.com/authsignal/identity-server-example.git\n   cd identity-server-example\n   ```\n\n2. Start the IdentityServer (authentication server)\n   ```\n   cd src/IdentityServer\n   dotnet run\n   ```\n   IdentityServer will run on https://localhost:5001\n\n3. In a new terminal, start the WebClient (client application)\n   ```\n   cd src/WebClient\n   dotnet run\n   ```\n   WebClient will run on https://localhost:5002\n\n4. Open your browser and navigate to https://localhost:5002\n   - You will be redirected to the IdentityServer login page\n   - Log in with one of the test accounts:\n     - Username: `alice`, Password: `alice`\n     - Username: `bob`, Password: `bob`\n\n5. After logging in, you'll be presented with MFA options if configured in your Authsignal account\n\n### Troubleshooting\n- In development mode, the application is configured to accept untrusted SSL certificates\n- If you encounter SSL certificate errors, you might need to trust the development certificates by running:\n  ```\n  dotnet dev-certs https --trust\n  ```\n\nFor more detailed integration information, refer to our [official documentation](https://docs.authsignal.com/integrations/identityserver).","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fauthsignal%2Fidentity-server-example","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fauthsignal%2Fidentity-server-example","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fauthsignal%2Fidentity-server-example/lists"}