Download the PHP package gfe/cleverreachapi without Composer
On this page you can find all versions of the php package gfe/cleverreachapi. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Table of contents
Download gfe/cleverreachapi
More information about gfe/cleverreachapi
Files in gfe/cleverreachapi
Download gfe/cleverreachapi
More information about gfe/cleverreachapi
Files in gfe/cleverreachapi
Vendor gfe
Package cleverreachapi
Short Description CleverReach api abstraction for simple newsletter subscribe
License
Package cleverreachapi
Short Description CleverReach api abstraction for simple newsletter subscribe
License
Please rate this library. Is it a good library?
Informations about the package cleverreachapi
cleverreachapi
generic php class for interacting with cleverreach
Main Usage
composer require gfe/cleverreachapi
in your implementation
use Gfe\Cleverreachapi\Apiconnector;
....
$cleverapi = new Apiconnector($user , $pass); // the integration api credentials
$status = $cleverapi->subscribeUser($email, $listId,$formId,'someInfoWhereThisComesFrom'); // email to subscribe to which list and what email form to send for double opt in
if you want to prevent getting a new token everytime
$tokenObject = $cleverapi->getTokenObject();
sample token
{ "access_token":"xxx",
"expires_in":2098276,
"token_type":"bearer",
"token_invalid_stamp":1697905128
}
store this somewhere safe and you can set the token either via constructor
$cleverapi = new Apiconnector($user , $pass , $tokenObject);
or explicit
$tokenObject = $cleverapi->setTokenObject($tokenObject);
if token is no more valid api will create a new one that you have to save in your app ( see token_invalid_stamp ) so compare getTokenObject with your saved token
All versions of cleverreachapi with dependencies
PHP Build Version
Package Version
Requires
ext-curl Version
*
The package gfe/cleverreachapi contains the following files
Loading the files please wait ....