Popularity
4.1
Growing
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.
-
GDAX
๐ GDAX REST and WebSocket API wrapper to trade blockchain cryptocurrencies like bitcoin, Litecoin and Ethereum.
InfluxDB โ Built for High-Performance Time Series Workloads
InfluxDB 3 OSS is now GA. Transform, enrich, and act on time series data directly in the database. Automate critical tasks and eliminate the need to move data externally. Download now.
Promo
www.influxdata.com

Do you think we are missing an alternative of aws-signer.cr or a related project?
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
- [beanieboi] beanieboi - creator, maintainer