Yleisradio / http-kit-aws4

[OBSOLETE] AWS Request Signing v4 for http-kit
MIT License
8 stars 1 forks source link
abandoned aws aws4 clojure clojure-library deprecated http-kit not-maintained obsolete

OBSOLETE

This project is no longer maintained.

AWS Request Signing v4 for http-kit

Provides aws4-request, a aws4-signature-providing wrapper for org.httpkit.client/request

Installation

In project.clj:

 (defproject your-project
   :dependencies [[http-kit-aws4 "0.2.0"]])

Usage

(:require [http-kit-aws4.http-kit :refer [aws4-request]])
(aws4-request
  "eu-west-1"
  "iam"
  {:url "https://iam.amazonaws.com/"
   :method :get
   :query-params {"Action" "ListUsers"
                  "Version" "2010-05-08"}})

Credentials

Uses AWS credentials provided run-time by (in order of precedence)

Contributing

Bug reports and pull requests are welcome on GitHub at https://github.com/Yleisradio/http-kit-aws4. This project is intended to be a safe, welcoming space for collaboration, and contributors are expected to adhere to the Contributor Covenant code of conduct.

License

This library is available as open source under the terms of the MIT License.

Acknowledgements

This project was inspired by and modeled after sharetribe/aws-sig4 - a clj-http middleware for signing AWS requests. Thank you.