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.
-
GDAX
๐ GDAX REST and WebSocket API wrapper to trade blockchain cryptocurrencies like bitcoin, Litecoin and Ethereum.
InfluxDB - Purpose built for real-time analytics at any scale.
InfluxDB Platform is powered by columnar analytics, optimized for cost-efficient storage, and built with open data standards.
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