gdronov/example-com

为Example.com评论服务提供的库

v1.0.0 2022-08-27 08:43 UTC

This package is auto-updated.

Last update: 2024-09-27 13:40:45 UTC


README

安装

composer require gdronov/example-com

快速入门示例

require 'vendor/autoload.php';

$apiClient = new Gdronov\ExampleCom\ApiClient('my-api-key-for-example-com');
$service = new Gdronov\ExampleCom\CommentHandler($apiClient);

// Get comments
$list = $service->getList($count, $offset);

// Add comment
$newCommentId = $service->add('Grigory', 'New comment');

// Edit comment
$service->edit($commentId, 'Alex', 'Edited comment');