Skip to content

Latest commit

 

History

History
31 lines (25 loc) · 670 Bytes

README.md

File metadata and controls

31 lines (25 loc) · 670 Bytes

Datatheke PHP client

About

A PHP client for the Data Management System Datatheke (http://www.datatheke.com/)

Install

Using composer

composer require 'datatheke/client' '~0.2.0'

Usage

<?php

// src/test.php
$loader = require __DIR__.'/../vendor/autoload.php';

$client = new Datatheke\Api\Client();
$client->setCredentials(MY_USERNAME, MY_PASSWORD);
// or $client->setTokenData('ACCESS_TOKEN', 'REFRESH_TOKEN', 'EXPIRES_TIMESTAMP');

$libraries = $client->getLibraries();
foreach ($libraries['items'] as $library) {
    echo $library['name']."\n";
}