Created
July 22, 2013 21:16
-
-
Save xcambar/6057773 to your computer and use it in GitHub Desktop.
A simple hull-php (https://github.com/hull/hull-php) test script
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?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