gitstore / webflow

一个不错的PHP Webflow客户端

0.1.1 2019-05-21 11:34 UTC

README

一个不错的PHP Webflow客户端

入门

composer require gitstore/webflow

基本用法

use Gitstore\Webflow\Clients\GuzzleClient;

$client = new GuzzleClient(getenv("WEBFLOW_TOKEN"));

$sites = $client->getSites();
$collections = $client->getCollections($sites[0]->id);

$operation = $client->createItem($collections[0]->id, [
    "name" => "A new item",
]);

print $operation->wasSuccessful(); // true
print $operation->getModel()->id; // "5c7295..."

查看测试以获取更多高级用法。

反馈

Twitter 上联系。