{"id":21449464,"url":"https://github.com/kralizek/assembla.connector","last_synced_at":"2025-07-14T20:31:34.513Z","repository":{"id":141687525,"uuid":"84258326","full_name":"Kralizek/Assembla.Connector","owner":"Kralizek","description":"A .NET Standard wrapper for Assembla REST API.","archived":false,"fork":false,"pushed_at":"2022-06-22T15:29:43.000Z","size":132,"stargazers_count":3,"open_issues_count":3,"forks_count":2,"subscribers_count":3,"default_branch":"master","last_synced_at":"2025-07-04T08:41:28.286Z","etag":null,"topics":["assembla","dotnet-core","dotnet-standard","rest-api"],"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/Kralizek.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}},"created_at":"2017-03-07T23:56:52.000Z","updated_at":"2022-02-04T20:40:49.000Z","dependencies_parsed_at":null,"dependency_job_id":"b4e0d794-ecb3-439b-be13-f424864e14fb","html_url":"https://github.com/Kralizek/Assembla.Connector","commit_stats":null,"previous_names":[],"tags_count":1,"template":false,"template_full_name":null,"purl":"pkg:github/Kralizek/Assembla.Connector","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Kralizek%2FAssembla.Connector","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Kralizek%2FAssembla.Connector/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Kralizek%2FAssembla.Connector/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Kralizek%2FAssembla.Connector/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/Kralizek","download_url":"https://codeload.github.com/Kralizek/Assembla.Connector/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Kralizek%2FAssembla.Connector/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":265344830,"owners_count":23750566,"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":["assembla","dotnet-core","dotnet-standard","rest-api"],"created_at":"2024-11-23T03:20:35.237Z","updated_at":"2025-07-14T20:31:34.085Z","avatar_url":"https://github.com/Kralizek.png","language":"C#","readme":"This repository contains a series of tools to easily integrate the REST API offered by [Assembla](https://www.assembla.com/).\nThe first tool being worked on is a REST API wrapper that will act as foundation for future tools.\n\n## Kralizek.Assembla.Connector\nThis library contains the REST API wrapper. The idea behind this package is to closely map the available methods.\nIn addition, this library won't validate the correctness of your requests. So, be sure you have the [API reference](http://api-docs.assembla.cc/content/api_reference.html) at hand.\n\n### Authentication\nAs stated in the [documentation](http://api-docs.assembla.cc/content/authentication.html), Assembla API supports four type of authentication of the requests.\n\n* Key/Secret credentials: suitable for development environment, small one-user applications.\n* Client credentials suitable for applications that rely on public data and do not require user authentication.\n* 3-step authentication flow: suitable for browser based applications.\n* Pin Code suitable for desktop/mobile applications. \n\nThis library aims at supporting the first two scenarios out-of-the-box.\nThe remaining scenarios will be supported by extensions packages.\n\n### Functionalities\nHere is a list of sections of the exposed functionalities.\n\n#### Implemented\n- [x] Spaces\n- [x] Users\n- [x] User roles\n- [x] Tools\n- [x] Tickets\n- [x] Tags\n- [x] Milestones\n- [x] Documents\n\n#### Next in line\n- [ ] Stream\n- [ ] Mentions\n- [ ] Wiki\n- [ ] SSH keys\n\n#### Later\n- [ ] Merge requests\n- [ ] StandUp reports\n- [ ] Webhooks\n- [ ] Tasks\n- [ ] Portfolio\n\n### Example\n\nHere is a small example of how to query for the list of all the spaces available to the current user\n```csharp\nILoggerFactory loggerFactory = new LoggerFactory();\n\nHttpClient client = new HttpClient { BaseAddress = new Uri(@\"https://api.assembla.com\") };\nclient.DefaultRequestHeaders.Add(\"X-Api-Key\", \"yourApiKey\");\nclient.DefaultRequestHeaders.Add(\"X-Api-Secret\", \"yourSecretKey\");\n\nIAssemblaClient assembla = new HttpAssemblaClient(client, loggerFactory.CreateLogger\u003cHttpAssemblaClient\u003e());\n\nvar spaces = await assembla.Spaces.GetAllAsync();\n\nspaces.Select(s =\u003e new {s.Id, s.WikiName, s.Name}).Dump();\n```\nYou can execute this script in [LinqPad](http://www.linqpad.net/) by adding the following packages\n* `Kralizek.Assembla.Connector`\n* `Microsoft.Extensions.Logging`\n\nor by downloading [this script](https://github.com/Kralizek/Assembla.Connector/blob/master/samples/LinqPad/list-your-spaces.linq).\n\n## Versioning\nThis repository uses the [Semantic Versioning 2.0.0](http://semver.org/spec/v2.0.0.html).\nThe packages whose major version is 0 are to be considered in their initial development phase, therefore their public programming interface cannot be considered stable.\n\n## Future development\nWhen the wrapper library is complete, additional tools can be built upon it.\nIdeas I have but are not limited to are\n* An ASP.NET Core drop-in middleware to handle authentication\n* A PowerShell module\n* A high-level library with a more cohesive and semantic richer programming interface.\n\n## Support\nSince I am not affiliated with Assembla in any way, this package might stop working at any moment due to unannounced API changes or similar causes. For these reasons, you use this package at your own risk.\n\nAnyway, if anything breaks, feel free to send a PR with the solution ;)\n\n## Disclaimer\nAll product and company names are trademarks™ or registered® trademarks of their respective holders. Use of them does not imply any affiliation with or endorsement by them. \n","funding_links":[],"categories":[],"sub_categories":[],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fkralizek%2Fassembla.connector","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fkralizek%2Fassembla.connector","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fkralizek%2Fassembla.connector/lists"}