{"id":19540867,"url":"https://github.com/skocimis/java-textflow-client","last_synced_at":"2025-08-17T21:34:44.174Z","repository":{"id":136244777,"uuid":"594516504","full_name":"Skocimis/java-textflow-client","owner":"Skocimis","description":"Java Maven package that helps you send SMS using TextFlow API","archived":false,"fork":false,"pushed_at":"2023-02-21T03:21:56.000Z","size":18,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":2,"default_branch":"master","last_synced_at":"2025-02-26T05:17:31.485Z","etag":null,"topics":["api","api-client","java","java11","javamaven11","maven","maven-plugin","simple-sms","sms","sms-api","sms-verification","text-message"],"latest_commit_sha":null,"homepage":"https://textflow.me","language":"Java","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"isc","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/Skocimis.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":"2023-01-28T19:40:58.000Z","updated_at":"2023-01-31T23:38:28.000Z","dependencies_parsed_at":"2023-12-08T03:00:28.108Z","dependency_job_id":null,"html_url":"https://github.com/Skocimis/java-textflow-client","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/Skocimis/java-textflow-client","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Skocimis%2Fjava-textflow-client","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Skocimis%2Fjava-textflow-client/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Skocimis%2Fjava-textflow-client/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Skocimis%2Fjava-textflow-client/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/Skocimis","download_url":"https://codeload.github.com/Skocimis/java-textflow-client/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Skocimis%2Fjava-textflow-client/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":270912463,"owners_count":24666737,"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-17T02:00:09.016Z","response_time":129,"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":["api","api-client","java","java11","javamaven11","maven","maven-plugin","simple-sms","sms","sms-api","sms-verification","text-message"],"created_at":"2024-11-11T03:07:41.157Z","updated_at":"2025-08-17T21:34:44.151Z","avatar_url":"https://github.com/Skocimis.png","language":"Java","readme":"# Java TextFlow client\n\n[![Maven Central](https://img.shields.io/maven-central/v/me.textflow/client.svg)](https://mvnrepository.com/artifact/me.textflow/client)\n\n\n## Documentation\n\nHere you will see just a sample usage of sending an SMS, for more instructions (including methods for user verification) check out our [official Java documentation](https://docs.textflow.me/java). \n\n## Installation\n\njava-textflow-client uses Maven. At present the jars *are* available from a public [maven](https://mvnrepository.com/artifact/me.textflow/client) repository.\n\nUse the following dependency in your project to grab via Maven:\n\n```\n       \u003cdependency\u003e\n          \u003cgroupId\u003eme.textflow\u003c/groupId\u003e\n          \u003cartifactId\u003eclient\u003c/artifactId\u003e\n          \u003cversion\u003e1.0.2\u003c/version\u003e\n       \u003c/dependency\u003e\n```\n## Sample Usage\n\nTo send an SMS, you have to create an API key using the [Textflow dashboard](https://textflow.me/api). When you register an account, you automatically get an API key with one free SMS which you can send anywhere.\n\n### Just send a message\n\n```java\nimport me.textflow.TextFlowClient;\n\n...\n\nTextFlowClient textFlowClient = new TextFlowClient(\"YOUR_API_KEY\");\ntextFlowClient.sendSMS(\"+3811231234\", \"Message body...\");\n```\n\n### Handle send message request result\n\n```java\n\nvar result = textFlowClient.sendSMS(\"+3811231234\", \"Message body...\");\nSystem.out.println(result.getMessage());\n\n```\n\n### Example properties of the successfully sent message result\n`result` is an instance of `TextFlowSendMessageResult`, which has the appropriate getters.\n```json\n{\n    \"ok\": true,\n    \"status\": 200,\n    \"message\": \"Message sent successfully\",\n    \"data\": {\n        \"to\": \"+381611231234\",\n        \"content\": \"Dummy message text...\",\n        \"countryCode\": \"RS\",\n        \"price\": 0.05,\n        \"timestamp\": 1674759108881\n    }\n}\n```\n\n### Example properties of the unsuccessfully sent message result\n`result` is an instance of `TextFlowSendMessageResult`, which has the appropriate getters.\n```json\n{\n    \"ok\": false,\n    \"status\": 404,\n    \"message\": \"API key not found\"\n}\n```\n\n## Getting help\n\nIf you need help installing or using the library, please check the [FAQ](https://textflow.me) first, and contact us at [support@textflow.me](mailto://support@textflow.me) if you don't find an answer to your question.\n\nIf you've found a bug in the API, package or would like new features added, you are also free to contact us!\n","funding_links":[],"categories":[],"sub_categories":[],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fskocimis%2Fjava-textflow-client","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fskocimis%2Fjava-textflow-client","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fskocimis%2Fjava-textflow-client/lists"}