Code Monkey home page Code Monkey logo

bigbluebuttonapi's Introduction

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);

bigbluebuttonapi's People

Contributors

knight1988 avatar mesutcakir avatar dependabot[bot] avatar

Stargazers

Fernando Oliveira avatar Baltuonis avatar Oduwole Oluwasegun avatar Yavuz Coşar avatar  avatar Md. Rashidul Hasan avatar  avatar Ali Tabesh avatar  avatar  avatar

Watchers

James Cloos avatar  avatar  avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.