diff options
Diffstat (limited to 'scripts/api-client.php')
-rwxr-xr-x | scripts/api-client.php | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/scripts/api-client.php b/scripts/api-client.php new file mode 100755 index 00000000..0fb45117 --- /dev/null +++ b/scripts/api-client.php @@ -0,0 +1,20 @@ +#!/usr/bin/env php +<?php + +require 'vendor/JsonRPC/Client.php'; + +if ($argc !== 3) { + die('Usage: '.$argv[0].' <url> <token>'.PHP_EOL); +} + +$client = new JsonRPC\Client($argv[1], 5, true); +$client->authentication('jsonrpc', $argv[2]); + + +$client->createProject('Test API'); + + +$r = $client->getAllProjects(); + +var_dump($r); + |