{"id":17268235,"url":"https://github.com/ratakondalaarun/gitterapi","last_synced_at":"2025-08-24T15:10:24.941Z","repository":{"id":54997339,"uuid":"323052593","full_name":"RatakondalaArun/gitterapi","owner":"RatakondalaArun","description":"A Dart client library for accessing Gitter API.","archived":false,"fork":false,"pushed_at":"2021-01-16T18:38:57.000Z","size":115,"stargazers_count":4,"open_issues_count":4,"forks_count":1,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-07-22T13:05:37.732Z","etag":null,"topics":["dart","dart-package","gitter","gitter-api","gitter-chat","gitter-client"],"latest_commit_sha":null,"homepage":"","language":"Dart","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"bsd-3-clause","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/RatakondalaArun.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2020-12-20T11:09:55.000Z","updated_at":"2023-12-26T03:15:40.000Z","dependencies_parsed_at":"2022-08-14T08:40:11.524Z","dependency_job_id":null,"html_url":"https://github.com/RatakondalaArun/gitterapi","commit_stats":null,"previous_names":[],"tags_count":3,"template":false,"template_full_name":null,"purl":"pkg:github/RatakondalaArun/gitterapi","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/RatakondalaArun%2Fgitterapi","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/RatakondalaArun%2Fgitterapi/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/RatakondalaArun%2Fgitterapi/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/RatakondalaArun%2Fgitterapi/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/RatakondalaArun","download_url":"https://codeload.github.com/RatakondalaArun/gitterapi/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/RatakondalaArun%2Fgitterapi/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":267770467,"owners_count":24141851,"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","status":"online","status_checked_at":"2025-07-29T02:00:12.549Z","response_time":2574,"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":["dart","dart-package","gitter","gitter-api","gitter-chat","gitter-client"],"created_at":"2024-10-15T08:12:50.825Z","updated_at":"2025-07-29T22:10:42.745Z","avatar_url":"https://github.com/RatakondalaArun.png","language":"Dart","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Gitter API Dart Warpper\n\nA Dart client library for accessing [Gitter API](https://developer.gitter.im/docs/welcome).\n\n![CI-Tests](https://github.com/RatakondalaArun/gitterapi/workflows/CI-Tests/badge.svg)\n[![Gitter](https://badges.gitter.im/RatakondalaArun/gitterapi.svg)](https://gitter.im/RatakondalaArun/gitterapi?utm_source=badge\u0026utm_medium=badge\u0026utm_campaign=pr-badge)\n\n## Getting Started\n\n1) Add this to your `pubspec.yaml`\n\n    ```text\n    dependencies:\n        tmdb_api: recent_version.\n    ```\n\n2) Import the package in your code.\n\n    ```dart\n    import 'package:gitterapi/gitterapi.dart'\n    ```\n\n3) Create instance of `GitterApi`.\n\n   ```dart\n   final gitterApi = GitterApi(ApiKeys('ACCESS_TOKEN'));\n   ```\n\n### Example\n\nNow use that instance to make api requests.\n\n```dart\nfinal Result\u003cMap\u003e result = await gitterApi.v1.userResource.me(); \nprint(result.data);\n\n// you can use models from gitterapi/models.dart to parse this data\nfinal User me = User.fromMap(result.data);\n```\n\n---\n\n# 🤝Wanna contributions to this package?\n\n## What you can contribute?\n\n- Add or update unit tests🧪.\n- Add or update documentation📝.\n- Found a new end point? create a\n  [issue](https://github.com/RatakondalaArun/gitterapi/issues/new?template=new_endpoint.md)\n  and work on it🔗.\n- Check out [good first issues](https://github.com/RatakondalaArun/gitterapi/issues?q=is%3Aopen+is%3Aissue+label%3A%22good+first+issue%22)🆕.\n\n## Resources\n\n- [Offical Docs](https://developer.gitter.im/docs/welcome)\n- [Unoffical API Docs](https://documenter.getpostman.com/view/9795430/TVzSiwEJ)\n\nNote: *Offical docs was not completely documented*.\n\n## 🔧Setup project for development\n\n1) Fork this repo. Then clone it.\n\n    ```shell\n    git clone https://github.com/{YOUR_GITHUB_USERNAME}/gitterapi.git\n    ```\n\n2) Install dependencies.\n\n    ```shell\n    dart pub get\n    ```\n\n3) Create a `.env` file for running tests.\n\n    ```text\n    AUTH_TOKEN={YOUR TOKEN}\n    USER_ID={YOUR USERID}\n    ROOM_ID={SOME ROOM ID}\n    CHAT_ROOM_ID={SOME GITTER ROOM ID}\n    MESSAGE_ID={SOME MESSAGE ID}\n    GROUP_ID={SOME GROUP ID}\n    ```\n\n**Now you are ready to contribute.**\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fratakondalaarun%2Fgitterapi","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fratakondalaarun%2Fgitterapi","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fratakondalaarun%2Fgitterapi/lists"}