klicktipp-php-client
An unofficial client for the Klicktipp API.
Installation
This project can easily be installed through Composer.
composer require d3/klicktipp-php-client
Set-up connection
Prepare the client for connecting to Klicktipp with your client key and secret key.
$klicktipp = new \D3\KlicktippPhpClient\Klicktipp(
$clientkey,
$secretkey,
new \GuzzleHttp\Client(...) // optional
);
get a subscriber status
$subscriberId = $klicktipp->subscriber()->search('me@johndoe.net');
$subscriber = $klicktipp->subscriber()->get($subscriberId);
$subscriber->isSubscribed()
Supported endpoints (still being added)
✅ = Done, and tested
☑️ = Done, but not yet tested
❌ = Not yet developed
❗ = deprecated/not supported
Endpoint | Status |
---|---|
account | ☑️ |
field | ☑️ |
subscriber | ☑️ |
subscription | ☑️ |
tag | ☑️ |
Beschreibung
Languages
PHP
100%