chartblocks/php-rest-sdk

ChartBlocks SDK

1.1.6 2016-01-29 16:21 UTC

This package is not auto-updated.

Last update: 2024-04-23 00:02:01 UTC


README

Installation

The easiest way to start using the SDK is to download it with Composer. Simply add this to your composer.json file:

{
   "require": {
     "chartblocks/php-rest-sdk": "~1.1."
   }
}

Alternatively download the source code manually, and include the classes in src/ChartBlocks

Usage

Tokens

You can get your API token and secret key by registering for an account, and then generating an API token from your profile page. Take these values and store them in your application config somewhere.

Example

<?php
$client = new \ChartBlocks\Client(array(
  'token' => 'PASTE_TOKEN',
  'secret' => 'PASTE_SECRET'
  ));
  
$dataSets = $client->getRepository('dataSet');
$myDataSet = $dataSets->findById('52f139ea054ff30f1f000004');

$myDataSet->append(array(
  new \ChartBlocks\DataSet\Row(null, array('a', 'b', 'c')),
  new \ChartBlocks\DataSet\Row(null, array('d', 'e', 'f'))
));
?>

Development info

The default server URL for requests is http://api.chartblocks.com/v1/. To overwrite this setting, set the environment variable CB_API_URL.