Libraries tagged by form strategy

strategio/megio-core

0 Favers
282 Downloads

Most powerful tool for creating webs, apps & APIs.

Go to Download


strategio/megio-starter

0 Favers
30 Downloads

Boilerplate for Megio apps & webs

Go to Download


strategery/oauth2-client-middleware

21 Favers
7 Downloads

OAuth2 PSR7 middleware for league/oauth2-client

Go to Download


strategio/contentio-sdk

2 Favers
191 Downloads

PHP SDK for Contentio CRM websites

Go to Download


daphascomp/daphascompsms

0 Favers
1 Downloads

# Authentication Requests made to our APIs must be authenticated, there are two ways to do this: 1. Authenticating using your API apiUsername and apiPassword - `Basic Auth` 2. Authenticating using an Auth Token - `Bearer Token` ## Method 1: Basic Auth Basic Authentication is a method for an HTTP user agent (e.g., a web browser) to provide a apiUsername and apiPassword when making a request. When employing Basic Authentication, users include an encoded string in the Authorization header of each request they make. The string is used by the request’s recipient to verify users’ identity and rights to access a resource. The Authorization header follows this format: > Authorization: Basic base64(apiUsername:apiPassword) So if your apiUsername and apiPassword are `onfon` and `!@pas123`, the combination is `onfon:!@pas123`, and when base64 encoded, this becomes `b25mb246IUBwYXMxMjM=`. So requests made by this user would be sent with the following header: > Authorization: Basic b25mb246IUBwYXMxMjM= | Description | | ---------------------------------------------------------------------------------------------- | | **apiUsername** `String` `Required` Your onfon account apiUsername, retrieved from portal | | **apiPassword** `String` `Required` Your onfon account apiPassword, retrieved from portal | ## Method 2: Bearer Tokens This authentication stategy allows you to authenticate using JSON Web Token ``JWT` that will expire after given duration. Each Access Token is a `JWT`, an encoded JSON object with three parts: the `header`, the `payload`, and the `signature`. The following is an example Access Token generated for Conversations > Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiIxMjM0NTY3ODkwIiwibmFtZSI6IkpvaG4gRG9lIiwiaWF0IjoxNTE2MjM5MDIyfQ.SflKxwRJSMeKKF2QT4fwpMeJf36POk6yJV_adQssw5c ### Getting the token To generate the token, make a `POST` request to `/v1/authorization` endpoint with your `apiUsername` and `apiPassword` This request should be made from your server and not on the client side such as browser or mobile environment. You will receive a JSON similar to below: `{ "token": "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiIxMjM0NTY3ODkwIiwibmFtZSI6IkpvaG4gRG9lIiwiaWF0IjoxNTE2MjM5MDIyfQ.SflKxwRJSMeKKF2QT4fwpMeJf36POk6yJV_adQssw5c", "validDurationSeconds": 3600}` You can use the token received to make API calls. The token will be valid for value of `validDurationSeconds`, before which you should generate a new token. #### Request Body ``` { "apiUsername": "root", "apiPassword": "hakty11" } ``` #### Response Body ``` { "token": "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiIxMjM0NTY3ODkwIiwibmFtZSI6IkpvaG4gRG9lIiwiaWF0IjoxNTE2MjM5MDIyfQ.SflKxwRJSMeKKF2QT4fwpMeJf36POk6yJV_adQssw5c", "validDurationSeconds": 3600 } ``` #### Example Curl ``` curl --location --request POST 'https://apis.onfonmedia.co.ke/v1/authorization' \ --data-raw '{ "apiUsername": "correctapiUsername", "apiPassword": "correctapiPassword" } ``` #### Making an API call You will be required to pass the token in `Authorization` header prefixed by `Bearer` when calling other endpoints. Example `Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiIxMjM0NTY3ODkwIiwibmFtZSI6IkpvaG4gRG9lIiwiaWF0IjoxNTE2MjM5MDIyfQ.SflKxwRJSMeKKF2QT4fwpMeJf36POk6yJV_adQssw5c`

Go to Download


laminas/laminas-stratigility

56 Favers
4524104 Downloads

PSR-7 middleware foundation for building and dispatching middleware pipelines

Go to Download


zendframework/zend-stratigility

252 Favers
3170482 Downloads

PSR-7 middleware foundation for building and dispatching middleware pipelines

Go to Download


stratify/error-handler-module

0 Favers
543 Downloads

Error handler module for Stratify

Go to Download


stratify/http

2 Favers
694 Downloads

HTTP middlewares for PSR-7 and PSR-15

Go to Download


stephan-strate/php-music-brainz-api

5 Favers
99 Downloads

PHP wrapper for MusicBrainz api. Supports object-oriented access using repositories and factories.

Go to Download


thecodingmachine/stratigility-harmony

1 Favers
57954 Downloads

Cross-framework module for Stratigility

Go to Download


struggle-for-php/sfp-stratigility-skeleton

1 Favers
13 Downloads

application skeleton for stratigility

Go to Download


zhaohangyang/laminas-stratigility

0 Favers
31 Downloads

PSR-7 middleware foundation for building and dispatching middleware pipelines

Go to Download


zfegg/stratigility-logging-error

0 Favers
610 Downloads

Logging for errors in Mezzio

Go to Download


mindplay/stately

1 Favers
47 Downloads

Session abstraction for PSR-7

Go to Download


<< Previous Next >>