Popularity
3.9
Stable
Activity
0.0
Stable
13
2
3

Programming language: Crystal
License: MIT License
Tags: Third-party APIs    

aws-signer.cr alternatives and similar shards

Based on the "Third-party APIs" category.
Alternatively, view aws-signer.cr alternatives based on common mentions on social networks and blogs.

Do you think we are missing an alternative of aws-signer.cr or a related project?

Add another 'Third-party APIs' Shard

README

AWS Signer

This library signs your HTTP requests using AWS v4

Installation

Add this to your application's shard.yml:

dependencies:
  aws_signer:
    github: beanieboi/aws-signer.cr

Usage

require "aws_signer"

AwsSigner.configure do |config|
  config.access_key = "AKIDEXAMPLE"
  config.secret_key = "wJalrXUtnFEMI/K7MDENG+bPxRfiCYEXAMPLEKEY"
  config.region = "us-east-1"
end

signed = AwsSigner.sign("GET", uri, headers, body)
signed["Authorization"]

Contributing

see CONTRIBUTING.md

Contributors