bigbluebutton-Github/labs/bbb-api-php-legacy/check.php
2012-04-05 10:47:53 -04:00

18 lines
757 B
PHP

<?php
//================================================================================
//------------------Required Libraries and Global Variables-----------------------
//================================================================================
require('bbb_api.php');
require('bbb_api_conf.php');
//================================================================================
//------------------------------------Main----------------------------------------
//================================================================================
echo '<?xml version="1.0"?>'."\r\n";
header('content-type: text/xml');
//Calls getMeetingXML and returns returns the result
echo BigBlueButton::getMeetingXML( $_GET['meetingID'], $url, $salt );
?>