Download the PHP package vince-scarpa/responsibleapi without Composer
On this page you can find all versions of the php package vince-scarpa/responsibleapi. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Informations about the package responsibleapi
ResponsibleAPI RESTful API
Responsible API is a secure PHP RESTful application that allows easy HTTP requests from\ external requests fused by Json Web Tokens (JWT).\ ResponsibleSDK is recommended to connect to the ResponsibleAPI\
Development
Version 1.4\ This repo is open for contributions.
Features include:
-
JWT
- to sign each request
-
Rate limiting
- to limit requests to a timed window frame and options to allow unlimited requests
- The Leaky bucket algorithm
- used for request throttling
Requirements
PHP 7.x\ Composer\ ResponsibleSDK [recommended]
Installation
Install composer if not already\ https://getcomposer.org/doc/00-intro.md
Install ResponsibleSDK [recommended for quick example]
https://github.com/vince-scarpa/responsibleSDK
Setup
In order for the ResponsibleAPI to initiate we need to add some basic configurations
- Import the example sql file
- Use or Create a
.config
fileSetup your storage
The ResponsibleAPI uses MySQL as Database storage, run the supplied
responsible.sql
file to install the required tables
Setup a config file
If you didn't get a .config
file shipped in this repo then you'll need to create one.\
In the repo root directory run the following or anyway you know to create and write to files
Your file structure should look like this
- responsibleAPI
- config
- .config
- src
- (...)
- config
Edit your new .config
file and paste the below code, change all credentials to reflect your storage\
Note: The MASTER_KEY is the global "secret key" for system use to sign requests.\
To generate a strong secret I recommend using a strong password generator, this has no length limit but do note you probably want to stick to 32bytes. The only tested characters are;
Basic usage
Setting up our API server
What does the above example give us? well, nothing really...\
Just a permissions denied
message and a server waiting for real requests.\
To access the ResponsibleAPI server via requests you'll need to run the ResponsibleSDK, this can be found @\
https://github.com/vince-scarpa/responsibleSDK or any other HTTP request method you're comfortable with
Options
Add options