masiuchi/mt-data-api-client-php

Movable Type Data API client for PHP

0.0.1 2017-04-02 11:36 UTC

This package is auto-updated.

Last update: 2024-05-21 18:49:49 UTC


README

Movable Type Data API client for PHP.

Usage

use \MT\DataAPI\Client;

$opts = array(
  "base_url" => "http://localhost/mt/mt-data-api.cgi",
  "client_id" => "test"
);
$client = new Client($opts);

$res = $client->call('list_sites');