Download the PHP package barrycoleman/akamai-edgeauth-php without Composer

On this page you can find all versions of the php package barrycoleman/akamai-edgeauth-php. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.

FAQ

After the download, you have to make one include require_once('vendor/autoload.php');. After that you have to import the classes with use statements.

Example:
If you use only one package a project is not needed. But if you use more then one package, without a project it is not possible to import the classes with use statements.

In general, it is recommended to use always a project to download your libraries. In an application normally there is more than one library needed.
Some PHP packages are not free to download and because of that hosted in private repositories. In this case some credentials are needed to access such packages. Please use the auth.json textarea to insert credentials, if a package is coming from a private repository. You can look here for more information.

  • Some hosting areas are not accessible by a terminal or SSH. Then it is not possible to use Composer.
  • To use Composer is sometimes complicated. Especially for beginners.
  • Composer needs much resources. Sometimes they are not available on a simple webspace.
  • If you are using private repositories you don't need to share your credentials. You can set up everything on our site and then you provide a simple download link to your team member.
  • Simplify your Composer build process. Use our own command line tool to download the vendor folder as binary. This makes your build process faster and you don't need to expose your credentials for private repositories.
Please rate this library. Is it a good library?

Informations about the package akamai-edgeauth-php

akamai-edgeauth-php : Akamai Edge Authorization Token for PHP

akamai-edgeauth-php is a token generator for use with Akamai Edge AuthorizationToken in an HTTP cookie, query string or HTTP header. You can configure it in the Property Manager at https://control.akamai.com. It is used by the behaviors Auth Token 2.0 Verification and Segmented Media Protection.

akamai-edgeauth-php supports PHP 7.1+ and depends on hash_hmac() in PHP only.

Akamai Property Manager image

Installation

To install akamai-edgeauth-php with composer:

Example

Usage

TokenGenerator class

The constructor takes an array of parameters as key/value pairs

Parameter Description
key (required) The encryption key to use. This should be the same value as you enter in the Akamai behavior Auth Token 2.0 Verification. Must be an even length hexadecimal digit string.
startTime (optional) The unix time the token is valid from. This will default to the current time. Valid values are any integer greater than zero, and the string 'now'.
endTime (optional) The unix time the token is valid until. This can be any time after the start time. This must be provided if 'windowSeconds' is not provided.
windowSeconds (optional) The number of seconds the token should be valid for from the start time. This must be provided if 'endTime' is not provided. 'endTime' has priority over 'windowSeconds' if both are provided.
algorithm (optional) The algorithm to use to create the token. Must be one of 'sha256', 'sha1', or 'md5'. Default is 'sha256'.
escapeEarly (optional) Whether to escape strings before generation of the token. Default is false.
fieldDelimiter (optional) The character to place between fields in the token. Default is '~'. If you intend the token to work in Akamai Auth Token 2.0 Verification behavior you should not change this.
aclDelimiter (optional) The character to place between entries in an ACL array. Defailt is '!'. If you intend the token to work in Akamai Auth Token 2.0 Verification behavior you should not change this.
verbose (optional) Will print out (using echo) the configuration of the component during token generation. Default is false.
ip (optional) Used for specifying IP address. Uses escapeEarly if set true.
sessionId (optional) Used for specifying a session id. Uses escapeEarly if set true.
payload (optional) Used for specifying a payload. Uses escapeEarly if set true.
salt (optional) Salt added to the token hash. This is deprecated in Akamai and should not be used for new implementations.
tokenName (optional) This is unused in the current implementation. This would be the name of the cookie, query parameter or header to use. Default is 'token'.

TokenGenerator methods

Parameter Description
url Single URL path (string)
acl Access Control List can use the wildcards (*, ?). It can be a single string or an array of strings.

All versions of akamai-edgeauth-php with dependencies

PHP Build Version
Package Version
Requires php Version >=7.1
Composer command for our command line client (download client) This client runs in each environment. You don't need a specific PHP version etc. The first 20 API calls are free. Standard composer command

The package barrycoleman/akamai-edgeauth-php contains the following files

Loading the files please wait ....