Skip to content

Instantly share code, notes, and snippets.

@ashrewdmint
Created June 18, 2009 19:18
Show Gist options
  • Save ashrewdmint/132138 to your computer and use it in GitHub Desktop.
Save ashrewdmint/132138 to your computer and use it in GitHub Desktop.
Internal API test
<?php
// Include the internal API somewhere
header('content-type:text/plain');
$user = 'andrew';
$response = $app->api->setBusinessOptions($user, array(
'b2b' => true,
'type' => 'startup'
));
print_r($response);
$response = $app->api->setUserOptions($user, array(
'visible' => true,
'encodingVideoBitrate' => '400'
));
print_r($response);
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment