quadrotech / cmsclient
Quadrotech CMS Client for PHP
Installs: 3
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 2
Forks: 0
Open Issues: 0
pkg:composer/quadrotech/cmsclient
Requires
- php: >=7.2.0
- guzzlehttp/guzzle: ^6.3
- guzzlehttp/promises: ^1.3
This package is auto-updated.
Last update: 2022-08-20 00:57:24 UTC
README
This is a propriatary internal library that is useful for Quadrotech only.
Introduction
This library is used to access CMS from PHP
Usage
To use the library, the first thing you need is an Access Token from the Identity Service.
This can be easily accomplished by using the league/oauth2-client package.
You then need to set the Token and the URL to the CMS Api for the client, after which you can use it.
Sample usage:
$url = "https://apiBaseUrl.com/"; $token = "akldjalekjawlefjwlfwjkef";
$cmsClient = new CMSClient($url, $token); $result = $cmsClient->getSubscriptions($accountId);