Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/regru/api-bigbluebutton
API-BigBlueButton
https://github.com/regru/api-bigbluebutton
Last synced: 29 days ago
JSON representation
API-BigBlueButton
- Host: GitHub
- URL: https://github.com/regru/api-bigbluebutton
- Owner: regru
- License: other
- Created: 2014-05-07T14:06:14.000Z (over 10 years ago)
- Default Branch: master
- Last Pushed: 2023-08-03T18:30:48.000Z (over 1 year ago)
- Last Synced: 2024-04-17T05:50:32.050Z (9 months ago)
- Language: Perl
- Size: 180 KB
- Stars: 1
- Watchers: 31
- Forks: 2
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
- Changelog: Changes
- License: LICENSE
Awesome Lists containing this project
README
# 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.014
# 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](https://metacpan.org/pod/API::BigBlueButton::Requests)
[API::BigBlueButton::Response](https://metacpan.org/pod/API::BigBlueButton::Response)
[BigBlueButton API](https://code.google.com/p/bigbluebutton/wiki/API)
# AUTHOR
Alexander Ruzhnikov