{"id":26252854,"url":"https://github.com/kinde-oss/kinde-dotnet-generator","last_synced_at":"2025-07-16T21:04:55.361Z","repository":{"id":196204033,"uuid":"636137870","full_name":"kinde-oss/kinde-dotnet-generator","owner":"kinde-oss","description":"OpenAPI generator for Kinde .NET SDK","archived":false,"fork":false,"pushed_at":"2025-06-25T01:43:50.000Z","size":92,"stargazers_count":5,"open_issues_count":1,"forks_count":1,"subscribers_count":7,"default_branch":"main","last_synced_at":"2025-07-10T11:05:33.214Z","etag":null,"topics":["openapi-generator"],"latest_commit_sha":null,"homepage":"","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/kinde-oss.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","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-05-04T07:51:17.000Z","updated_at":"2025-06-25T01:43:53.000Z","dependencies_parsed_at":"2025-04-24T06:06:50.248Z","dependency_job_id":"d2aaf9ed-509a-4083-b7a7-7aaf5233bee0","html_url":"https://github.com/kinde-oss/kinde-dotnet-generator","commit_stats":null,"previous_names":["kinde-oss/kinde-dotnet-generator"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/kinde-oss/kinde-dotnet-generator","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/kinde-oss%2Fkinde-dotnet-generator","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/kinde-oss%2Fkinde-dotnet-generator/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/kinde-oss%2Fkinde-dotnet-generator/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/kinde-oss%2Fkinde-dotnet-generator/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/kinde-oss","download_url":"https://codeload.github.com/kinde-oss/kinde-dotnet-generator/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/kinde-oss%2Fkinde-dotnet-generator/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":265540044,"owners_count":23784875,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","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":["openapi-generator"],"created_at":"2025-03-13T17:28:31.118Z","updated_at":"2025-07-16T21:04:55.355Z","avatar_url":"https://github.com/kinde-oss.png","language":"C#","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Kinde .NET generator\n\nThe generator for the [Kinde .NET SDK](https://github.com/kinde-oss/kinde-dotnet-sdk).\n\n[![PRs Welcome](https://img.shields.io/badge/PRs-welcome-brightgreen.svg?style=flat-square)](https://makeapullrequest.com) [![Kinde Docs](https://img.shields.io/badge/Kinde-Docs-eee?style=flat-square)](https://kinde.com/docs/developer-tools) [![Kinde Community](https://img.shields.io/badge/Kinde-Community-eee?style=flat-square)](https://thekindecommunity.slack.com)\n\n## Overview\n\nThis generator creates an SDK in .NET that can authenticate to Kinde using the Authorization Code grant or the Authorization Code with PKCE grant via the [OAuth 2.0 protocol](https://oauth.net/2/). It can also access the [Kinde Management API](https://kinde.com/api/docs/#kinde-management-api) using the client credentials grant.\n\nAlso, see the SDKs section in Kinde’s [contributing guidelines](https://github.com/kinde-oss/.github/blob/main/.github/CONTRIBUTING.md).\n\n## Usage\n\n### Initial set up\n\n1. Clone the repository to your machine:\n\n   ```bash\n   git clone https://github.com/kinde-oss/kinde-dotnet-generator.git\n   ```\n\n2. Go into the project:\n\n   ```bash\n   cd kinde-dotnet-generator\n   ```\n\n3. Install the OpenAPI Generator tool:\n\n   https://openapi-generator.tech/docs/installation\n\n### SDK generation\n\nRun the following command to generate the SDK:\n\n```bash\nopenapi-generator-cli generate -i https://api-spec.kinde.com/kinde-management-api-spec.yaml -g csharp -o Kinde.Sdk --package-name=Kinde.Api -c config.yaml --library=httpclient --additional-properties=targetFramework=netstandard2.1,packageVersion=1.3.1,sourceFolder=\n```\n\n**Note:** The API specifications should always point to Kinde's hosted version: https://api-spec.kinde.com/kinde-management-api-spec.yaml. This is set via the ` -i` option in the [OpenAPI Generator CLI](https://openapi-generator.tech/docs/usage/), for example:\n\n```bash\nopenapi-generator-cli generate -i https://api-spec.kinde.com/kinde-combined-api-specs.yaml\n```\n\nThe SDK gets outputted to: `Kinde.Sdk`, which you can enter via:\n\n```bash\ncd Kinde.Sdk\n```\n\nFolder `Kinde.Sdk` contains our final SDK after build.\nIn order to copy files generated from Kinde.Sdk folder to the development repository, eg: `../kinde-dotnet-sdk` , please run\n```\ncp -r Kinde.Sdk/Kinde.Api ../kinde-dotnet-sdk/\n```\n\n## SDK documentation\n\n[.NET SDK](https://kinde.com/docs/developer-tools/dotnet-sdk)\n\n## Development\n\nThe instructions provided in the \"Usage → Initial set up\" section above are sufficient to get you started.\n\n## Contributing\n\nPlease refer to Kinde’s [contributing guidelines](https://github.com/kinde-oss/.github/blob/489e2ca9c3307c2b2e098a885e22f2239116394a/CONTRIBUTING.md).\n\n## License\n\nBy contributing to Kinde, you agree that your contributions will be licensed under its MIT License.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fkinde-oss%2Fkinde-dotnet-generator","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fkinde-oss%2Fkinde-dotnet-generator","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fkinde-oss%2Fkinde-dotnet-generator/lists"}