Crates.io | get402-rust |
lib.rs | get402-rust |
version | 0.0.1 |
source | src |
created_at | 2022-02-17 16:18:49.767999 |
updated_at | 2022-02-17 16:18:49.767999 |
description | Client Ror Building Paid APIs Using Get402.com |
homepage | https://get402.com |
repository | https://github.com/ProofOfWorkCompany/get402-rust |
max_upload_size | |
id | 534213 |
size | 5,199 |
Build Paid APIs with Ease. This library simplifies offering of APIs that can be accessed only via micropayments
cargo install get402
You may import the entire library or load only specific objects as needed
Your Get402 API is identified by a public/private key pair where the public address is used to identify your API and the private key is used to sign requests to get402.com.
One you load your app using its private key there is no more work to do, all signing of requests is handled automatically by the library.
All clients start with a balance of zero credits available, which can be queried any time
When a client uses your API you should charge their API key which reduces their available balance of credits.
If their balance of credits goes to zero you will receive an error including a PaymentRequired request with details on purchasing additional credits. If you do not want to receive an error here always check the balance first.
To purchase additional credits simply request a new payment template for any number of credits. You will receive a standard payment request which wallets know how to fulfill.
Since client API keys are actually public/private key pairs capable of holding funds directly, this library provides a utility for purchasing new credits using the client private key directly. First you must load your client funds by sending satoshis to the client identifier address. Once funds arrive they will be available for purchasing credits.
Once payment is sent your client API key will immediately be credited with additional credits
cargo build
To run the tests you must set GET402_PRIVATE_KEY
environment variable either in the shell or a .env
file
cargo test