{"id":20732417,"url":"https://github.com/jpush/jsms-api-java-client","last_synced_at":"2025-04-23T22:09:01.675Z","repository":{"id":9321858,"uuid":"61360344","full_name":"jpush/jsms-api-java-client","owner":"jpush","description":"JiGuang's officially supported Java client library for accessing JSMS APIs. 极光官方支持的 JSMS Java 版本服务器端 SDK。","archived":false,"fork":false,"pushed_at":"2022-05-20T20:47:06.000Z","size":883,"stargazers_count":29,"open_issues_count":4,"forks_count":30,"subscribers_count":11,"default_branch":"master","last_synced_at":"2025-04-23T22:08:23.617Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":"https://docs.jiguang.cn","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/jpush.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}},"created_at":"2016-06-17T08:59:35.000Z","updated_at":"2024-08-06T07:10:23.000Z","dependencies_parsed_at":"2022-09-12T08:41:52.505Z","dependency_job_id":null,"html_url":"https://github.com/jpush/jsms-api-java-client","commit_stats":null,"previous_names":[],"tags_count":16,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jpush%2Fjsms-api-java-client","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jpush%2Fjsms-api-java-client/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jpush%2Fjsms-api-java-client/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jpush%2Fjsms-api-java-client/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/jpush","download_url":"https://codeload.github.com/jpush/jsms-api-java-client/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":250522299,"owners_count":21444511,"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":[],"created_at":"2024-11-17T05:19:21.907Z","updated_at":"2025-04-23T22:09:01.647Z","avatar_url":"https://github.com/jpush.png","language":"Java","funding_links":[],"categories":[],"sub_categories":[],"readme":"# JSMS API JAVA CLIENT\n\n### 概述\n这是短信 Rest API 的 Java 版本封装开发包，是由极光推送官方提供的，一般支持最新的 API功能。\n\n对应的 Rest API 文档：https://docs.jiguang.cn/jsms/server/rest_api_summary/\n\n## 安装\n\n### maven 方式\n将下边的依赖条件放到你项目的 maven pom.xml 文件里。\n\u003e 其中 slf4j 可以与 logback, log4j, commons-logging 等日志框架一起工作，可根据你的需要配置使用。\n\n其中 LATEST_VERSION 的值可在 [release 页面](https://github.com/jpush/jsms-api-java-client/releases/latest) 获取\n\n```Java\n\u003cdependency\u003e\n    \u003cgroupId\u003ecn.jpush.api\u003c/groupId\u003e\n    \u003cartifactId\u003ejsms-client\u003c/artifactId\u003e\n    \u003cversion\u003eLATEST_VERSION\u003c/version\u003e\n\u003c/dependency\u003e\n\u003cdependency\u003e\n\t\u003cgroupId\u003ecom.google.code.gson\u003c/groupId\u003e\n\t\u003cartifactId\u003egson\u003c/artifactId\u003e\n\t\u003cversion\u003e2.3\u003c/version\u003e\n\u003c/dependency\u003e\n\u003cdependency\u003e\n\t\u003cgroupId\u003eorg.slf4j\u003c/groupId\u003e\n\t\u003cartifactId\u003eslf4j-api\u003c/artifactId\u003e\n\t\u003cversion\u003e1.7.7\u003c/version\u003e\n\u003c/dependency\u003e\n\u003cdependency\u003e\n    \u003cgroupId\u003ecn.jpush.api\u003c/groupId\u003e\n    \u003cartifactId\u003ejiguang-common\u003c/artifactId\u003e\n    \u003cversion\u003e1.0.8\u003c/version\u003e\n\u003c/dependency\u003e\n\u003c!-- For log4j --\u003e\n\u003cdependency\u003e\n\t\u003cgroupId\u003eorg.slf4j\u003c/groupId\u003e\n\t\u003cartifactId\u003eslf4j-log4j12\u003c/artifactId\u003e\n\t\u003cversion\u003e1.7.7\u003c/version\u003e\n\u003c/dependency\u003e\n\u003cdependency\u003e\n\t\u003cgroupId\u003elog4j\u003c/groupId\u003e\n\t\u003cartifactId\u003elog4j\u003c/artifactId\u003e\n\t\u003cversion\u003e1.2.17\u003c/version\u003e\n\u003c/dependency\u003e\n```\n\n### jar 包方式\n* [slf4j](http://www.slf4j.org/) / log4j (Logger)\n* [gson](https://code.google.com/p/google-gson/) (Google JSON Utils)\n* [jiguang-common-client](https://github.com/jpush/jiguang-java-client-common)\n* [jsms-client](https://github.com/jpush/jsms-api-java-client/releases/latest)\n\n[项目 libs/ 目录](https://github.com/jpush/jsms-api-java-client/tree/master/libs)下可以找到 slf4j 及 gson jar 包 可复制到你的项目里去。\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fjpush%2Fjsms-api-java-client","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fjpush%2Fjsms-api-java-client","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fjpush%2Fjsms-api-java-client/lists"}