NAME
API::BigBlueButton
SYNOPSIS
use
API::BigBlueButton;
my
$bbb
= API::BigBlueButton->new(
server
=>
'bbb.myhost'
,
secret
=>
'1234567890'
);
my
$res
=
$bbb
->get_version;
if
(
$res
->success ) {
my
$version
=
$res
->response->version
}
else
{
warn
"Error occured: "
.
$res
->error .
", Status: "
.
$res
->status;
}
DESCRIPTION
client for BigBlueButton API
VERSION
version 0.015
METHODS
- new(%param)
-
Constructor
%param:
server
Ip-address or hostname in which the server is located. Required parameter.
secret
Shared secret. Required parameter.
timeout
Connection timeout. Optional parameter.
use_https
SEE ALSO
AUTHOR
Alexander Ruzhnikov <a.ruzhnikov@reg.ru>