nodejs-bigbluebutton
v0.0.2
Published
Integration BigBlueButton in your Node.js Application
Downloads
338
Maintainers
Readme
nodejs-bigbluebutton
Install
$ npm install nodejs-bigbluebutton --save Get BigBlueButton config details
Display the current security salt for the BigBlueButton API.
$ bbb-conf --secretUsage
var bbb = require('nodejs-bigbluebutton');
bbb.salt = '';//Add Your salt key
bbb.url = ''; //Add Your UrlCheck
bbb.create(data, function (response) {
console.log(response);
});Create meeting on BBB
meetingId :- REQUIREDmeetingName :- REQUIREDattendeePw :- Match this value in getJoinMeetingURL() to join as attendee.moderatorPw :- Match this value in getJoinMeetingURL() to join as moderator.welcomeMsg :- ''= use default. Change to customize.dialNumber :- The main number to call into. Optional.voiceBridge :- PIN to join voice. Optional.webVoice :- Alphanumeric to join voice. Optional.logoutUrl :- Default in bigbluebutton.properties. Optional.maxParticipants :- Optional. -1 = unlimitted. Not supported in BBB. [number]record :- New.true will tell BBB to record the meeting.duration :- Default = 0 which means no set duration in minutes. [number]meta_category :-Use to pass additional info to BBB server. See API docs.
data = {
meetingID: 'a1',
name: 'demo',
attendeePW: '123',
moderatorPW: '123',
welcome: '123',
dialNumber: '',
voiceBridge: '',
webVoice: '',
logoutURL: '',
maxParticipants: '-1',
record: 'false',
duration: '0',
meta_category: ''
};
bbb.create(data, function (response) {
console.log(response);
});Join meeting
meetingId REQUIRED - We have to know which meeting to join.username REQUIRED - The user display name that will show in the BBB meeting.password REQUIRED - Must match either attendee or moderator pass for meeting.userId OPTIONAL - stringwebVoiceConf OPTIONAL - string
data = {
meetingID: 'a1',
fullName: 'demo',
password: '123',
userID: '',
webVoiceConf: '',
}
bbb.join(data, function (response) {
console.log(response);
}); if you want to join as moderator use moderator password else use attendee password
Check meeting is running or not
meetingId REQUIRED - We have to know which meeting is running.
data = {
meetingID: 'a1',
}
bbb.running(data, function (response) {
console.log(response);
}); Get meeting info
meetingId REQUIRED
data = {
meetingID: 'a1'
}
bbb.getMeetingInfo(data, function (response) {
console.log(response);
}); Get recordings
meetingId REQUIRED
data = {
meetingID: 'a1'
}
bbb.getRecordings(data, function (response) {
console.log(response);
});Publish recordings
meetingId REQUIREDpublish REQUIRED true for publish false unpublish
data = {
meetingID: 'a1',
publish: true
}
bbb.publishRecordings(data, function (response) {
console.log(response);
});Delete recordings
recordID REQUIRED
data = {
recordID: 'a1'
}
bbb.deleteRecordings(data, function (response) {
console.log(response);
});Update recordings
recordID REQUIREDmeta_Presentermeta_Presentermeta_TERM
data = {
recordID: 'a1',
meta_Presenter: '',
meta_Presenter:'',
meta_TERM: ''
};
bbb.updateRecordings(data, function (response) {
console.log(response);
});End meeting
meetingID REQUIREDpassword REQUIRED
data = {
meetingID: 'a1',
password: '123'
};
bbb.end(data, function (response) {
console.log(response);
});###BigBlueButton APIs http://docs.bigbluebutton.org/dev/api.html
###Thanks
