retrochaos/trustpilot-invitation-api
最新稳定版本:2.0.0
Composer 安装命令:
composer require retrochaos/trustpilot-invitation-api
包简介
A PHP library for accessing the Trustpilot Invitation API
README 文档
README
A PHP library for accessing the Trustpilot Invitation API.
Originally developed and open-sourced by moneymaxim.
Fully modernised to:
- Use Symfony HTTP Client
- Provide type-safe error handling
Install
Install using Composer:
composer install retrochaos/trustpilot-invitation-api
Usage
use Trustpilot\Api\Authenticator\Authenticator; use Trustpilot\Api\Invitation\Client; use Trustpilot\Api\Invitation\Recipient; use Trustpilot\Api\Invitation\Sender; use Trustpilot\Api\Invitation\Context; $authenticator = new Authenticator(); $accessToken = $authenticator->getAccessToken($apiKey, $apiToken, $username, $password); $client = new Client($accessToken); $context = new Context($businessUnitId, $templateId, $redirectUri); // The last two arguments to the Context constructor ($tags and $locale) are optional // $context = new Context($templateId, $redirectUri, $tags = array(), $locale = 'en-US'); $recipient = new Recipient($recipientEmail, $recipientName); $sender = new Sender($senderEmail, $senderName, $replyTo); $client->invite($context, $recipient, $sender, $reference) /* : array */
统计信息
- 总下载量: 11
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 0
- 点击次数: 0
- 依赖项目数: 0
- 推荐数: 0
其他信息
- 授权协议: MIT
- 更新时间: 2024-02-20