{"id":23649282,"url":"https://github.com/Cosium/matrix-communication-client","last_synced_at":"2025-09-01T00:31:07.938Z","repository":{"id":177397197,"uuid":"659916723","full_name":"Cosium/matrix-communication-client","owner":"Cosium","description":"A java client for the Matrix protocol.","archived":false,"fork":false,"pushed_at":"2025-08-12T09:44:42.000Z","size":97,"stargazers_count":40,"open_issues_count":5,"forks_count":10,"subscribers_count":5,"default_branch":"master","last_synced_at":"2025-08-29T09:12:07.468Z","etag":null,"topics":["matrix"],"latest_commit_sha":null,"homepage":"https://matrix.org/","language":"Java","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/Cosium.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-06-28T21:09:24.000Z","updated_at":"2025-08-28T13:26:39.000Z","dependencies_parsed_at":"2023-10-12T19:07:44.553Z","dependency_job_id":"4e8224dc-d2e6-49ac-a1ab-eadb453464a8","html_url":"https://github.com/Cosium/matrix-communication-client","commit_stats":null,"previous_names":["cosium/matrix-communication-client"],"tags_count":9,"template":false,"template_full_name":null,"purl":"pkg:github/Cosium/matrix-communication-client","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Cosium%2Fmatrix-communication-client","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Cosium%2Fmatrix-communication-client/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Cosium%2Fmatrix-communication-client/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Cosium%2Fmatrix-communication-client/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/Cosium","download_url":"https://codeload.github.com/Cosium/matrix-communication-client/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Cosium%2Fmatrix-communication-client/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":273057843,"owners_count":25038120,"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-08-31T02:00:09.071Z","response_time":79,"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":["matrix"],"created_at":"2024-12-28T15:24:50.950Z","updated_at":"2025-09-01T00:31:07.645Z","avatar_url":"https://github.com/Cosium.png","language":"Java","funding_links":[],"categories":["Bot SDKs"],"sub_categories":["Java"],"readme":"[![Build Status](https://github.com/Cosium/matrix-communication-client/actions/workflows/ci.yml/badge.svg)](https://github.com/Cosium/matrix-communication-client/actions/workflows/ci.yml)\n[![Maven Central](https://img.shields.io/maven-central/v/com.cosium.matrix_communication_client/matrix-communication-client.svg)](https://search.maven.org/#search%7Cgav%7C1%7Cg%3A%22com.cosium.matrix_communication_client%22%20AND%20a%3A%22matrix-communication-client%22)\n\n\n# Matrix Communication Client\n\nA [Matrix](https://matrix.org/) java client.\n\n# Example\n\n```java\npublic class Example {\n\n  public static void main(String[] args) {\n    MatrixResources matrix =\n        MatrixResources.factory()\n            .builder()\n            .https()\n            .hostname(\"matrix.example.org\")\n            .defaultPort()\n            .usernamePassword(\"jdoe\", \"secret\")\n            .build();\n\n    RoomResource room = matrix\n        .rooms()\n        .create(\n            CreateRoomInput.builder()\n                .name(\"Science\")\n                .roomAliasName(\"science\")\n                .topic(\"Anything about science\")\n                .build());\n\t\n    room.sendMessage(Message.builder().body(\"Hello !\").formattedBody(\"\u003cb\u003eHello !\u003c/b\u003e\").build());\n  }\n}\n```\n\nAnother example with existing room:\n\n```java\npublic class Example {\n\n  public static void main(String[] args) {\n    MatrixResources matrix =\n        MatrixResources.factory()\n            .builder()\n            .https()\n            .hostname(\"matrix.example.org\")\n            .defaultPort()\n            .usernamePassword(\"jdoe\", \"secret\")\n            .build();\n\n    RoomResource room = matrix\n        .rooms()\n        .byId(\"!PVvauSmjcHLwoAJkyT:matrix.example.org\");\n\t\n    room.sendMessage(Message.builder().body(\"Hello !\").formattedBody(\"\u003cb\u003eHello !\u003c/b\u003e\").build());\n  }\n}\n```\n\n# Dependency\n\n```xml\n\u003cdependency\u003e\n  \u003cgroupId\u003ecom.cosium.matrix_communication_client\u003c/groupId\u003e\n  \u003cartifactId\u003ematrix-communication-client\u003c/artifactId\u003e\n  \u003cversion\u003e${matrix-communication-client.version}\u003c/version\u003e\n\u003c/dependency\u003e\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2FCosium%2Fmatrix-communication-client","html_url":"https://awesome.ecosyste.ms/projects/github.com%2FCosium%2Fmatrix-communication-client","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2FCosium%2Fmatrix-communication-client/lists"}