Knight1988 / BigBlueButtonApi

BigBlueButton API for .NET

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

BigBlueButtonApi

BigBlueButton API for .NET

Get Version

var bbb = new BigBlueButton("https://bbb.yoursite.com/bigbluebutton/api", "YOURSCRETKEY");
Response GetVersion();

Create a new meeting

CreateResponse Create(string meetingId, string name, string attendeePassword, string moderatorPassword, bool record = true, bool allowStartStopRecording = true, bool autoStartRecording = false, int voiceBridge = 76894, string welcome = null, string logoutUrl = null);

End Meeting

Response End(string meetingId, string password);

Get Meeting Informations

MeetingInfoResponse GetMeetingInfo(string meetingId, string password);

Get Meetings (Active)

GetMeetingResponse GetMeetings();

Get Records (Only published)

GetRecordingsResponse GetRecordings(string meetingId = null);

Meeting Status Control

IsMeetingRunningResponse IsMeetingRunning(string meetingId);

Meeting Join User

string Join(string meetingId, string name, string password, bool redirect = true);

More Sample in the BigBlueButtonApi.Tests projects

Sample

var bbb = new BigBlueButton("https://bbb.yoursite.com/bigbluebutton/api", "YOURSCRETKEY");
string meetingId = Guid.NewGuid().ToString().Sha512();
string mod_pas = Guid.NewGuid().ToString().Sha512();
string kat_pas = Guid.NewGuid().ToString().Sha512();
string name = "MeetName";
var response = _bbb.Create(meetingId, name, kat_pas, mod_pas, true, false, true, 76894, "Welcome", "https://www.returnedyoursitename.com.tr?q=Param1&t=Param2");
var attendee_res = _bbb.Join(meetingId, "Mesut Çakır", mod_pas);
Console.WriteLine("Your Link: " + attendee_res);

About

BigBlueButton API for .NET


Languages

Language:C# 82.1%Language:Smalltalk 12.9%Language:PowerShell 5.0%