Skip to content

Instantly share code, notes, and snippets.

@xcambar
Created July 22, 2013 21:16
Show Gist options
  • Save xcambar/6057773 to your computer and use it in GitHub Desktop.
Save xcambar/6057773 to your computer and use it in GitHub Desktop.
A simple hull-php (https://github.com/hull/hull-php) test script
<?php
require 'vendor/autoload.php';
$hull = new Hull_Client(array( 'hull' => array(
'host' => 'YOUR_ORG_URL',
'appId' => 'YOUR_APP_ID',
'appSecret' => 'YOUR_APP_SECRET'
)));
$app = $hull->get('app');
var_dump($app);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment