{"id":16634539,"url":"https://github.com/maliming/owl.tokenwildcardissuervalidator","last_synced_at":"2026-06-10T16:31:55.595Z","repository":{"id":119634295,"uuid":"365188011","full_name":"maliming/Owl.TokenWildcardIssuerValidator","owner":"maliming","description":null,"archived":false,"fork":false,"pushed_at":"2025-07-16T01:56:28.000Z","size":11,"stargazers_count":2,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2026-04-23T19:16:41.532Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"C#","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/maliming.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}},"created_at":"2021-05-07T09:50:19.000Z","updated_at":"2025-08-25T14:59:10.000Z","dependencies_parsed_at":null,"dependency_job_id":"817eafd9-467b-4b24-a601-887b0f9b89ba","html_url":"https://github.com/maliming/Owl.TokenWildcardIssuerValidator","commit_stats":null,"previous_names":[],"tags_count":2,"template":false,"template_full_name":null,"purl":"pkg:github/maliming/Owl.TokenWildcardIssuerValidator","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/maliming%2FOwl.TokenWildcardIssuerValidator","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/maliming%2FOwl.TokenWildcardIssuerValidator/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/maliming%2FOwl.TokenWildcardIssuerValidator/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/maliming%2FOwl.TokenWildcardIssuerValidator/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/maliming","download_url":"https://codeload.github.com/maliming/Owl.TokenWildcardIssuerValidator/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/maliming%2FOwl.TokenWildcardIssuerValidator/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":34161283,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-26T15:22:16.424Z","status":"online","status_checked_at":"2026-06-10T02:00:07.152Z","response_time":89,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"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":[],"created_at":"2024-10-12T05:39:46.488Z","updated_at":"2026-06-10T16:31:55.590Z","avatar_url":"https://github.com/maliming.png","language":"C#","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Owl.TokenWildcardIssuerValidator \n\nA lightweight .NET library designed to enhance JWT token validation in ASP.NET Core applications by enabling support for wildcard issuer (iss) validation.\n\n[![Nuget](https://img.shields.io/nuget/v/Owl.TokenWildcardIssuerValidator?style=plastic)](https://www.nuget.org/packages/Owl.TokenWildcardIssuerValidator)\n\n\nYou can set [TokenValidationParameters's](https://learn.microsoft.com/en-us/dotnet/api/microsoft.identitymodel.tokens.tokenvalidationparameters) [IssuerValidator](https://learn.microsoft.com/en-us/dotnet/api/microsoft.identitymodel.tokens.tokenvalidationparameters.issuervalidator) or [IssuerValidatorUsingConfiguration](https://learn.microsoft.com/en-us/dotnet/api/microsoft.identitymodel.tokens.tokenvalidationparameters.issuervalidatorusingconfiguration) to support wildcard issuer validation.\n\n```cs\nservices.AddAuthentication(JwtBearerDefaults.AuthenticationScheme)\n    .AddJwtBearer(options =\u003e\n    {\n        options.Authority = \"https://abp.io\";\n        options.Audience = \"abp_io\";\n\n        options.TokenValidationParameters.IssuerValidator = TokenWildcardIssuerValidator.IssuerValidator;\n        options.TokenValidationParameters.ValidIssuers = new[]\n        {\n            \"https://{0}.abp.io\"\n        };\n    });\n```\n\n```cs\nservices.AddAuthentication(JwtBearerDefaults.AuthenticationScheme)\n    .AddJwtBearer(options =\u003e\n    {\n        options.Authority = \"https://abp.io\";\n        options.Audience = \"abp_io\";\n\n        options.TokenValidationParameters.IssuerValidatorUsingConfiguration = TokenWildcardIssuerValidator.IssuerValidatorUsingConfiguration;\n        options.TokenValidationParameters.ValidIssuers = new[]\n        {\n            \"https://{0}.abp.io\"\n        };\n    });\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmaliming%2Fowl.tokenwildcardissuervalidator","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fmaliming%2Fowl.tokenwildcardissuervalidator","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmaliming%2Fowl.tokenwildcardissuervalidator/lists"}