The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.

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.013

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

    Use/not use https. Optional parameter.

SEE ALSO

API::BigBlueButton::Requests

API::BigBlueButton::Response

BigBlueButton API

AUTHOR

Alexander Ruzhnikov <a.ruzhnikov@reg.ru>