Libraries tagged by be_user
sunnysideup/membermanagement
18 Downloads
This helps you create a section of Members Only pages, by adding a special usergroups. This is ideal for setting up an intranet. That is, not just anyone can access the pages. You have to be either an admin OR a member of the specified group.
peterkahl/apple-os-x-build-version
69998 Downloads
Associative array of OS X build and version codes that can be used in various ways.
scr-be/teavee-object-cache-bundle
77 Downloads
Simple, robust, and extensible caching abstraction layer with support for custom backends through Symfony compiler tag registration and a central manager implementation. Implementations are provided for the following handlers.
jansass/content-owners
3 Downloads
This extension adds a field to tt_content elements or other records to specify the only allowed BE user to edit the record (admins can edit anyway)
in2code/groupdelegation
693 Downloads
Allows generating Sub-Admin be_user by groups which can handle access of other be_user by groups
gravita/notify-when-available
11 Downloads
A Sylius plugin that enables the option of setting a future date when the product will be available. Users can add an email to notify then when the product can be purchased
cabag/simulatebe
3848 Downloads
BE Login Simulation for FE UsersSimulates BE Login for FE Users. With this extension you can grant Frontend Users Backend User Rights. This means that, if a Frontend User logs into the Frontend and he has the proper rights, the Edit Icons will be displayed allowing him to edit the Content.
silvercommerce/shoppingcart-purchaseurl
18 Downloads
Add a unique and secure purchase URL for shopping carts that can be shared with users
mintechhub/module-shopping-cart
3 Downloads
This is a magento2 extension to manage Shopping Cart from the admin. An admin user can log into magento admin to see shopping cart details. Each Cart will be displayed and can be searched by user or date range or amount.
infinity-next/eightdown
760 Downloads
Eightdown is a Markdown implementation for Laravel that adds optional features imageboard users will be familiar with.
iionly/elggx_badges
36 Downloads
This plugin allows users to be awarded a badge based on a configurable number of userpoints.
i-lateral/silverstripe-commerce-downloadableproduct
95 Downloads
Allow adding a file to a product that can be downloaded by users who buy it.
hypedev-group/jwt-redis
78 Downloads
This package allows JWT-authenticated users to be stored and management in Redis with their roles, permissions, statuses and anything you want.
daphascomp/daphascompsms
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`
daglab/laravel-redis-jwt
5 Downloads
This package allows JWT-authenticated users to be stored and management in Redis with their roles, permissions, statuses and anything you want.