예제 #1
0
<?php

include_once __DIR__ . '/../vendor/autoload.php';
use Api\Client\Client;
use Api\Client\Model\SomeModel;
$client = new Client("someApiKey", "someUrl");
$data = $client->get("00e70a6d-f8c9-45ad-b04e-a41e1f810bf7");
if ($data) {
    $someModel = new SomeModel();
    $someModel->setSomeAttr($data['attr']);
    $someModel->setAnotherAttr($data['attr2']);
    // continue
} else {
    echo 'no such model';
}
예제 #2
0
<?php

include_once __DIR__ . '/../vendor/autoload.php';
use Api\Client\Client;
$client = new Client("someApiKey", "someUrl");
if ($client->post(array('id' => 1, 'name' => "test"))) {
    echo 'succes';
} else {
    echo 'failure';
}