{"id":24327673,"url":"https://github.com/rishikeshdarandale/aws-http","last_synced_at":"2026-06-08T07:02:23.643Z","repository":{"id":48889706,"uuid":"118401380","full_name":"RishikeshDarandale/aws-http","owner":"RishikeshDarandale","description":"A fluent http client library for aws","archived":false,"fork":false,"pushed_at":"2021-07-06T23:14:20.000Z","size":246,"stargazers_count":1,"open_issues_count":6,"forks_count":0,"subscribers_count":3,"default_branch":"master","last_synced_at":"2025-01-17T22:14:50.089Z","etag":null,"topics":["aws-http-client","http-client","java"],"latest_commit_sha":null,"homepage":"https://rishikeshdarandale.github.io/aws-http","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/RishikeshDarandale.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":"2018-01-22T03:29:58.000Z","updated_at":"2023-09-11T07:53:07.000Z","dependencies_parsed_at":"2022-09-16T04:12:08.970Z","dependency_job_id":null,"html_url":"https://github.com/RishikeshDarandale/aws-http","commit_stats":null,"previous_names":[],"tags_count":2,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/RishikeshDarandale%2Faws-http","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/RishikeshDarandale%2Faws-http/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/RishikeshDarandale%2Faws-http/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/RishikeshDarandale%2Faws-http/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/RishikeshDarandale","download_url":"https://codeload.github.com/RishikeshDarandale/aws-http/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":242990251,"owners_count":20217959,"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":["aws-http-client","http-client","java"],"created_at":"2025-01-17T22:14:53.929Z","updated_at":"2025-12-24T07:49:20.593Z","avatar_url":"https://github.com/RishikeshDarandale.png","language":"Java","funding_links":[],"categories":[],"sub_categories":[],"readme":"# aws-http\n\n[![Build Status](https://api.travis-ci.org/RishikeshDarandale/aws-http.svg?branch=master)](https://travis-ci.org/RishikeshDarandale/aws-http)\n[![codecov](https://codecov.io/gh/RishikeshDarandale/aws-http/branch/master/graph/badge.svg)](https://codecov.io/gh/RishikeshDarandale/aws-http)\n[![Codacy Badge](https://api.codacy.com/project/badge/Grade/03ab23fe4a264ab09b01e64df876b1b7)](https://www.codacy.com/app/RishikeshDarandale/aws-http?utm_source=github.com\u0026amp;utm_medium=referral\u0026amp;utm_content=RishikeshDarandale/aws-http\u0026amp;utm_campaign=Badge_Grade)\n\n[![Maven Central](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/io/github/rishikeshdarandale/aws-http/maven-metadata.xml.svg)](http://search.maven.org/#search%7Cga%7C1%7Ca%3A%22aws-http%22)\n[![Javadocs](http://www.javadoc.io/badge/io.github.rishikeshdarandale/aws-http.svg)](http://www.javadoc.io/doc/io.github.rishikeshdarandale/aws-http)\n[![License MIT](http://img.shields.io/badge/license-MIT-green.svg)](https://github.com/rishikeshdarandale/aws-http/blob/master/LICENSE)\n\n\nA fluent http client library for aws\n\n### Requirement\n\n* java 8\n\n### Usage\n\nAdd the dependency to your project as below:\n\n* maven\n\n```\n\u003cdependency\u003e\n  \u003cgroupId\u003eio.github.rishikeshdarandale\u003c/groupId\u003e\n  \u003cartifactId\u003eaws-http\u003c/artifactId\u003e\n  \u003cversion\u003e1.0.0\u003c/version\u003e\n\u003cdependency\u003e\n```\n\n* gradle\n\n```\ndependencies {\n  compile 'io.github.rishikeshdarandale:aws-http:1.0.0'\n}\n```\n\nHere is example:\n\n```\n        MyClass myClassObject = new JdkRequest(\"https://www.somehost.com\")\n                .method(RequestMethod.GET)\n                .path(\"/mypath\")\n                .queryParams(\"message\", \"hello*world\")\n                .header(\"Accept\", \"application/json\")\n                .header(\"Content-Type\", \"application/json\")\n                .body(\"{}\")\n                .sign(AwsSignParams(\"myAccessKey\", \"MySecretId\", \"es\"))\n                .execute()\n                .getAs(MyClass.class);\n```\n\n`aws-http` is flexible library and you can use either of following http libraries:\n\n* jersey-client\n\nAdd `jersey-client` library to your project along with `aws-http` as below:\n\n  * maven\n\n```\n\u003cdependency\u003e\n  \u003cgroupId\u003eio.github.rishikeshdarandale\u003c/groupId\u003e\n  \u003cartifactId\u003eaws-http\u003c/artifactId\u003e\n  \u003cversion\u003e1.0.0\u003c/version\u003e\n\u003cdependency\u003e\n\u003cdependency\u003e\n  \u003cgroupId\u003eorg.glassfish.jersey.core\u003c/groupId\u003e\n  \u003cartifactId\u003ejersey-client\u003c/artifactId\u003e\n  \u003cversion\u003e2.26\u003c/version\u003e\n  \u003cscope\u003eruntime\u003c/scope\u003e\n\u003cdependency\u003e\n```\n\n  * gradle\n\n```\ndependencies {\n  compile 'io.github.rishikeshdarandale:aws-http:1.0.0'\n  runtime 'org.glassfish.jersey.core:jersey-client:2.26'\n}\n```\n\nHere is example:\n\n```\n        MyClass myClassObject = new JerseyRequest(\"https://www.somehost.com\")\n                .method(RequestMethod.GET)\n                .path(\"/mypath\")\n                .queryParams(\"message\", \"hello*world\")\n                .header(\"Accept\", \"application/json\")\n                .header(\"Content-Type\", \"application/json\")\n                .body(\"{}\")\n                .sign(AwsSignParams(\"myAccessKey\", \"MySecretId\", \"es\"))\n                .execute()\n                .getAs(MyClass.class);\n```\n\n* http client\n\n[WIP]\n\n### Contribute\n\nWelcome! You can absolutely contribute to this project. Please fork the repository, make the necessary changes, validate and create a pull request.\n\n### Verify the build locally\n\n```\n./gradlew build\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Frishikeshdarandale%2Faws-http","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Frishikeshdarandale%2Faws-http","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Frishikeshdarandale%2Faws-http/lists"}