{"id":32637233,"url":"https://github.com/shmehdi01/android-restify","last_synced_at":"2026-07-03T04:02:00.911Z","repository":{"id":216067406,"uuid":"154847212","full_name":"shmehdi01/Android-Restify","owner":"shmehdi01","description":"This is a web service used Volley and Gson to make your Service Request and Parsing in less time without any effort ","archived":false,"fork":false,"pushed_at":"2019-05-11T15:46:31.000Z","size":1130,"stargazers_count":1,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"master","last_synced_at":"2025-10-31T01:50:31.449Z","etag":null,"topics":["android-library","gson","json-parser","rest-api","service","volley","volley-library"],"latest_commit_sha":null,"homepage":"","language":"Java","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/shmehdi01.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null}},"created_at":"2018-10-26T14:28:54.000Z","updated_at":"2019-05-11T15:46:32.000Z","dependencies_parsed_at":"2024-01-08T10:17:47.063Z","dependency_job_id":null,"html_url":"https://github.com/shmehdi01/Android-Restify","commit_stats":null,"previous_names":["shmehdi01/android-restify"],"tags_count":4,"template":false,"template_full_name":null,"purl":"pkg:github/shmehdi01/Android-Restify","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/shmehdi01%2FAndroid-Restify","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/shmehdi01%2FAndroid-Restify/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/shmehdi01%2FAndroid-Restify/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/shmehdi01%2FAndroid-Restify/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/shmehdi01","download_url":"https://codeload.github.com/shmehdi01/Android-Restify/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/shmehdi01%2FAndroid-Restify/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":35071463,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-26T15:22:16.424Z","status":"online","status_checked_at":"2026-07-03T02:00:05.635Z","response_time":110,"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":["android-library","gson","json-parser","rest-api","service","volley","volley-library"],"created_at":"2025-10-31T01:49:54.877Z","updated_at":"2026-07-03T04:02:00.897Z","avatar_url":"https://github.com/shmehdi01.png","language":"Java","funding_links":[],"categories":[],"sub_categories":[],"readme":"This library will help you to parse easily without any more efforts. \n\nNote : Make sure you have given INTERNET PERMISSION in manifest.xml\n\nStep 1. Add the JitPack repository to your build file \n\nAdd it in your root build.gradle at the end of repositories:\n\n\tallprojects {\n\t\trepositories {\n\t\t\t...\n\t\t\tmaven { url 'https://jitpack.io' }\n\t\t}\n\t}\n\nStep 2. Add the dependency\n\n\tdependencies {\n\t         implementation 'com.github.shmehdi01:Android-Restify:v.1.0.3'\n\t}\n\nHow to use ?\n\nSuppose your JSON response us like that :\n\n     {\n       \"facebook\": \"https://www.facebook.com/rizz.hacker\",\n       \"twitter\": \"https://twitter.com/shmehdi01\",\n       \"youtube\": \"https://www.youtube.com/shmehdi5\",\n     }\n\nCreate a Model/Pojo Class as :\n     \n      class Social {\n     \n        private String facebook;\n        private String youtube;\n        private String twitter;\n\n        public String getFacebook() {\n            return facebook;\n        }\n\n        public void setFacebook(String facebook) {\n            this.facebook = facebook;\n        }\n\n        public String getYoutube() {\n            return youtube;\n        }\n\n        public void setYoutube(String youtube) {\n            this.youtube = youtube;\n        }\n\n        public String getTwitter() {\n            return twitter;\n        }\n\n        public void setTwitter(String twitter) {\n            this.twitter = twitter;\n        }\n    }\n\n \nHit request as :\n\n       new Service\u003cSocial\u003e().getRequest(this, url, new Parser\u003cSocial\u003e() {\n            @Override\n            protected TypeToken\u003cSocial\u003e parseJson() {\n                return new TypeToken\u003cModel\u003e(){};\n            }\n        }, new Response\u003cSocial\u003e() {\n            @Override\n            public void onServerResponse(Social social, String json, String url) {\n                \n            }\n        });\n\nMore methods :\n      postRequest()\n      jsonReqeust()\n      parseResponse()\n      logError()\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fshmehdi01%2Fandroid-restify","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fshmehdi01%2Fandroid-restify","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fshmehdi01%2Fandroid-restify/lists"}